Файл: WoWonder 1.2.1/Update Guide/v1.1/Script/sources/story.php
Строк: 26
<?php
$wo['content'] = '';
$wo['description'] = '';
$wo['keywords'] = '';
if (isset($_GET['id']) && !empty($_GET['id'])) {
$placement = '';
if (Wo_IsLogged() === true) {
if (Wo_IsAdmin($wo['user']['user_id'])) {
$placement = 'admin';
}
}
$id = Wo_GetPostIdFromUrl($_GET['id']);
$wo['story'] = Wo_PostData($id, $placement);
if (empty($wo['story']) || Wo_PostExists($wo['story']['post_id']) === false) {
header("Location: " . Wo_SeoLink('index.php?tab1=home'));
exit();
}
$wo['story']['page'] = 1;
$wo['content'] = Wo_LoadPage('story-content/content');
$wo['description'] = Wo_Secure(substr($wo['story']['Orginaltext'], 0, 156));
$wo['keywords'] = '';
} else {
header("Location: " . Wo_SeoLink('index.php?tab1=home'));
exit();
}
$wo['page'] = 'story';
$wo['title'] = '';
if (!empty($wo['description'])) {
$wo['title'] = substr($wo['story']['Orginaltext'], 0, 50) . '...';
} else {
$wo['title'] = 'Post';
}
$wo['title'] .= ' | ' . $wo['config']['siteName'];
?>