Просмотр файла includes/wap/builder/page_move2bufer.php

Размер файла: 1.3Kb
  1. <?php
  2. if ($query3!='') $nocache_=$query3+0;
  3. $fp = @fopen ($userpath."opeation.cache", "r");$testcache = trim(@fgets($fp, 10));@fclose ($fp);
  4. if ($nocache_!=$testcache)
  5. {
  6. if (file_exists($userpath.'_BUFER_/'.$editfile.'.wml') && ($query4!='rewrite'))
  7. {
  8. print $head.cyr2utf('<card id="main" title="В портфель"><p>'.
  9. '<b>Страница '.$editfile.'.wml уже есть в портфеле, заменить?</b><br/>'.
  10. '<a href="http://wap.kmx.ru/?'.$id.'/pm'.$dmpage.$mpage.'/'.$editfile.'/move2bufer/'.$nocache.'/rewrite">Заменить</a><br/>'.
  11. '<a href="http://wap.kmx.ru/?'.$id.'/pm'.$dmpage.$mpage.'/'.$editfile.'">Отмена</a>'.
  12. '</p></card></wml>');
  13. exit;
  14. }
  15.  
  16. if (!is_dir($userpath.'_BUFER_')) {@mkdir($userpath.'_BUFER_');@chmod($userpath.'_BUFER_',0777);}
  17. if (file_exists($userpath.$currentdir.$editfile.'.wml'))
  18. {
  19. @unlink($userpath.'_BUFER_/'.$editfile.'.wml');
  20. @rename($userpath.$currentdir.$editfile.'.wml',$userpath.'_BUFER_/'.$editfile.'.wml');
  21. }
  22. $fp = fopen ($userpath."opeation.cache", "w+");fwrite ($fp, $nocache_);fclose ($fp);
  23. }
  24. print $head.cyr2utf('<card id="main" title="В портфель"><p>'.
  25. 'Страница '.$editfile.'.wml успешно перемещена в портфель<br/>'.
  26. '<a href="http://wap.kmx.ru/?'.$id.'/pm'.$dmpage.$mpage.'">В Менеджер страниц</a>'.
  27. '</p></card></wml>');
  28. exit;
  29. ?>