rollback.php 435 B

12345678910111213141516171819
  1. <?php
  2. function get_os(){
  3. if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
  4. return "w";
  5. } else {
  6. return "l";
  7. }
  8. }
  9. if (get_os() == "w"){
  10. rename ("c:\\notebubble\\settings_bak.php","c:\\notebubble\\settings.php");
  11. } else {
  12. $home_dir = posix_getpwnam(get_current_user())['dir'];
  13. rename ("$home_dir/.local/share/notebubble/settings_bak.php","$home_dir/.local/share/notebubble/settings.php");
  14. }
  15. header('location: index.php');
  16. ?>