Вход Регистрация
Файл: Arhmobi_esdcms/blog/actions.php
Строк: 35
<?php
include_once '../sys/inc/start.php';
$doc = new document(1);
$doc->title __('Действия');
if (!isset(
$_GET ['id']) || !is_numeric($_GET ['id']) || !isset($_GET ['idblog'])) {
    
$doc->toReturn('./');
    
$doc->err(__('Ошибка выбора сообщения'));
    exit();
}
$id_message = (int) $_GET ['id'];
$id_blog = (int) $_GET ['idblog'];
$q $db->prepare("SELECT * FROM `blog_comment` WHERE `id` = '$id_message' LIMIT 1");
$q->execute(Array($id_message));
if (!
$message $q->fetch()) {
    
$doc->toReturn('./');
    
$doc->err(__('Сообщение не найдено'));
    exit();
}
$listing = new listing;
$ank = new user($message['id_user']);
$post $listing->post();
$post->title $ank->nick();
$post->content text::toOutput($message['mess']);
$post->time misc::when($message['time']);
$post->icon($ank->icon());
$post $listing->post();
$post->title __('Посмотреть анкету');
$post->icon('ank_view');
$post->url '/profile.view.php?id=' $ank->id;
if (
$user->group) {
    
$post $listing->post();
    
$post->title __('Ответить');
    
$post->icon('reply');
    
$post->url 'blog.php?blog=' .$id_blog.'&amp;message=' $id_message '&amp;reply';
    
$post $listing->post();
    
$post->title __('Цитировать');
    
$post->icon('quote');
    
$post->url 'blog.php?blog=' .$id_blog.'&amp;message=' $id_message '&amp;quote';
}
$listing->display();
$doc->ret(__('Вернуться'), './');
?>
Онлайн: 1
Реклама