<?php
/************************************************************************/
/* ViperWeb: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Raptr & Godboko */
/* http://development.ea-hq.net */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/* */
/* Based on PHP-Nuke found at http://www.phpnuke.org */
/************************************************************************/
if (!eregi("index.php", $PHP_SELF))
$module_name = basename(dirname(__FILE__));
get_lang($module_name);
if(!isset($sid)) {
exit();
}
function PrintPage($sid) {
global $site_logo, $nukeurl, $sitename, $datetime, $prefix, $dbi;
$result = sql_query("select title, time, hometext, bodytext, topic, notes from ".$prefix."_stories where sid=$sid", $dbi);
list($title, $time, $hometext, $bodytext, $topic, $notes) = sql_fetch_row($result, $dbi);
$result2 = sql_query("select topictext from ".$prefix."_topics where topicid=$topic", $dbi);
list($topictext) = sql_fetch_row($result2, $dbi);
formatTimestamp($time);
echo "
<html>
<head><title>$sitename - $title</title></head>
<body bgcolor=\"#ffffff\" text=\"#000000\">
<table border=\"0\" align=\"center\"><tr><td>
<table border=\"0\" width=\"640\" cellpadding=\"0\" cellspacing=\"1\" bgcolor=\"#000000\"><tr><td>
<table border=\"0\" width=\"640\" cellpadding=\"20\" cellspacing=\"1\" bgcolor=\"#ffffff\"><tr><td>
<center>
<img src=\"images/$site_logo\" border=\"0\" alt=\"\"><br><br>
<font class=\"content\">
<b>$title</b></font><br>
<font class=tiny><b>"._PDATE."</b> $datetime<br><b>"._PTOPIC."</b> $topictext</font><br><br>
</center>
<font class=\"content\">
$hometext<br><br>
$bodytext<br><br>
$notes<br><br>
</font>
</td></tr></table></td></tr></table>
<br><br><center>
<font class=\"content\">
"._COMESFROM." $sitename<br>
<a href=\"$nukeurl\">$nukeurl</a><br><br>
"._THEURL."<br>
<a href=\"$nukeurl/index.php?mod=News&file=article&sid=$sid\">$nukeurl/index.php?mod=News&file=article&sid=$sid</a>
</font>
</td></tr></table>
</body>
</html>
";
}
PrintPage($sid);
?>