Fix return statement

This commit is contained in:
Trevor Slocum 2013-04-15 19:55:35 -07:00
parent 88d4b441c2
commit f1edbc8c9b

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>'; $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> <fieldset>
<legend>Status</legend> <legend>Status</legend>
@ -604,6 +604,8 @@ EOF;
</fieldset> </fieldset>
<br> <br>
EOF; EOF;
return $output;
} }
function manageInfo($text) { function manageInfo($text) {