Файл: mobile/index.php
Строк: 19
<?
define('_IN_JOHNCMS', 1);
/* by Str@nnik
http://offside.tk
*/
$headmod ="";
$textl = 'Каталог телефонов';
$rootpath = '../';
require_once ("../incfiles/core.php");
require_once ("../incfiles/head.php");
header("Content-type:text/html; charset=utf-8");
$file=file_get_contents('http://neoza.ru/mobiles/?'.$_SERVER['QUERY_STRING']);
$file=str_replace('?act', 'index.php?act', $file);
$file=str_replace('<img src="', '<img src="http://neoza.ru/mobiles/', $file);
$file=preg_replace('|<!DOCTYPE(.*?)<body>|is','',$file);
$file=str_replace('<div class="f">Каталог Телефонов</div>', '<div class="phdr">Каталог Телефонов</div>', $file);
$file=preg_replace('|<a href="http://neoza.ru">На главную</a><br />(.*?)</html>|is','',$file);
echo $file;
require_once ("../incfiles/end.php");
?>