hola, estaba revisando, y en esta parte de subs. php me salen varios errores
Quoteeot;
obExit();
}
function Sticky ()
{
global $threadid,$sticky,$moderators,$settings,$username,$txt,$cgi,$yySetLocation,$db_prefix,$doLimitOne;
if (!in_array($username,$moderators) && $settings[7] != 'Administrator' && $settings[7] != 'Global Moderator') { fatal_error("$txt[67]"); }
if ($threadid == '') { fatal_error("No thread specified!"); }
$newsticky = ($sticky == '1' ) ? 0 : 1;
$request = mysql_query("UPDATE {$db_prefix}topics SET isSticky=$newsticky WHERE ID_TOPIC=$threadid$doLimitOne");
$yySetLocation = "$cgi;action=display;threadid=$threadid";
redirectexit();
}
function ReportToModerator() {
global $txt,$color,$cgi,$thread,$board,$id,$subject,$poster,$username;
template_header();
$rname=LoadRealName($username);
print <<<EOT
<table border=0 width="80%" cellspacing=1 bgcolor="$color[bordercolor]" class="bordercolor" align="center" cellpadding="4">
<tr>
<td class="titlebg" bgcolor="$color[titlebg]"><font size=2 class="text1" color="$color[titletext]"><b>$txt[rtm1]</b></font></td>
</tr><tr>
<td class="windowbg" bgcolor="$color[windowbg]"><BR>
<form action="$cgi;action=reporttm2" method="POST">
<center>
<font size=2>$txt[rtm2]
<input type=text name="comment" value="" size="50">
<input type="hidden" name="reporter" value="$rname ($username)">
<input type="hidden" name="thread" value="$thread">
<input type="hidden" name="board" value="$board">
<input type="hidden" name="id" value="$id">
<input type="hidden" name="subject" value="$subject">
<input type="hidden" name="poster" value="$poster">
<input type=submit value="$txt[rtm10]">
</form>
</font>
</center>
</td>
</tr>
</table>
EOT;
que puede ser? los errores q me salen es en todas partes donde dice eot
