diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2009-12-26 21:39:50 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2009-12-26 21:39:50 +0000 |
commit | 80c3a857e793a00630354c6a90332fe8fcd2baf8 (patch) | |
tree | 2e6ee5ea6219547d6b5d6072b6097146bb7f791f | |
parent | fbcbb1234117b62a279431dbc6867694f2a57b87 (diff) |
bugfix news links
git-svn-id: svn://svn.cccv.de/engel-system@342 29ba0400-6e00-0410-a75a-ca02368028f8
-rwxr-xr-x | www-ssl/nonpublic/news_output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www-ssl/nonpublic/news_output.php b/www-ssl/nonpublic/news_output.php index 7263b261..a85c23ee 100755 --- a/www-ssl/nonpublic/news_output.php +++ b/www-ssl/nonpublic/news_output.php @@ -60,7 +60,7 @@ Print_Text(5); for ($i=1; $i <= $dis_rows; $i++) { if (!((($i * $DISPLAY_NEWS) - $_GET["news_begin"]) == $DISPLAY_NEWS)) { - echo "<a href=\"./news.php?news_begin=".(($i*$DISPLAY_NEWS) - $DISPLAY_NEWS)."\">$i</a> "; + echo "<a href=\"./news.php?news_begin=".(($i*$DISPLAY_NEWS) - $DISPLAY_NEWS - 1)."\">$i</a> "; } else { echo "$i "; } |