diff options
Diffstat (limited to 'www-ssl/nonpublic/news_comments.php')
-rwxr-xr-x | www-ssl/nonpublic/news_comments.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www-ssl/nonpublic/news_comments.php b/www-ssl/nonpublic/news_comments.php index 6b4ef1ff..81825dad 100755 --- a/www-ssl/nonpublic/news_comments.php +++ b/www-ssl/nonpublic/news_comments.php @@ -38,7 +38,7 @@ $news_rows = mysql_num_rows($Erg); <th align="left" colspan=2>Kommentar</th> </tr> -<? +<?PHP for ($n = 0 ; $n < $news_rows ; $n++) { echo "\t<tr class=\"content\">"; echo "\t\t<td width=100>"; @@ -67,7 +67,7 @@ echo "</table>"; <a name="Neu"> </a> <form action="./news_comments.php" method="GET"> -<input type="hidden" name="nid" value="<? echo $_GET["nid"]; ?>"> +<input type="hidden" name="nid" value="<?PHP echo $_GET["nid"]; ?>"> <table> <tr> <td align="right" valign="top">Text:</td> @@ -78,7 +78,7 @@ echo "</table>"; <input type="submit" value="sichern..."> </form> -<? +<?PHP } |