Файл: public_html/element_profile_history.php
Строк: 29
<?php
require_once './element_options/element_options.php';
    if (!$user) { header('Location: /'); exit; }
    $title = 'Персонаж';
    if (readcache('element_user_mesto'.$user['lost_id']) != $title) writecache('element_user_mesto'.$user['lost_id'], $title);
    
    if (!$id OR $id == $user['lost_id']) {
    
    
        $title = 'Моя история';
        require_once './element_include/element_head.php';
        require_once './element_include/element_header_user_true.php';
        require_once './element_include/element_history_user_true.php';
        require_once './element_include/element_foot_user_true.php';
    } else {
        $title = 'Моя история';
                $error1 = '<span class="small">Выбранный Вами персонаж не существует, либо был удален, если вы считаете это ошибкой, обратитесь пожалуйста в <a class="small yellow" href="/support">техническую поддержку</a></span>';
                require_once 'element_error_page.php';
                exit;
    }
?>