Fix return statement

This commit is contained in:
Trevor Slocum 2013-04-15 19:55:35 -07:00
parent 88d4b441c2
commit f1edbc8c9b
1 changed files with 3 additions and 1 deletions

View File

@ -565,7 +565,7 @@ function manageStatus() {
$post_html .= '<tr><td>' . buildPost($post, TINYIB_INDEXPAGE) . '</td><td valign="top" align="right"><form method="get" action="?"><input type="hidden" name="manage" value=""><input type="hidden" name="moderate" value="' . $post['id'] . '"><input type="submit" value="Moderate" class="managebutton"></form></td></tr>';
}
return <<<EOF
$output .= <<<EOF
<fieldset>
<legend>Status</legend>
@ -604,6 +604,8 @@ EOF;
</fieldset>
<br>
EOF;
return $output;
}
function manageInfo($text) {