From 87f91a37f49b30de5ae78bab624eaf8790c65185 Mon Sep 17 00:00:00 2001 From: cookie Date: Wed, 16 Nov 2005 00:12:21 +0000 Subject: fix var init git-svn-id: svn://svn.cccv.de/engel-system@59 29ba0400-6e00-0410-a75a-ca02368028f8 --- www-ssl/nonpublic/index.php | 3 ++- www-ssl/nonpublic/news_output.php | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'www-ssl') diff --git a/www-ssl/nonpublic/index.php b/www-ssl/nonpublic/index.php index 45f28f8f..99835624 100755 --- a/www-ssl/nonpublic/index.php +++ b/www-ssl/nonpublic/index.php @@ -71,7 +71,8 @@ else } include ("./inc/header.php"); -echo "

". Get_Text($ErrorText). "


\n"; +if( isset($ErrorText) + echo "

". Get_Text($ErrorText). "


\n"; include ("./inc/login_eingabefeld.php"); include ("./inc/footer.php"); diff --git a/www-ssl/nonpublic/news_output.php b/www-ssl/nonpublic/news_output.php index 91112c81..e2b2f85d 100755 --- a/www-ssl/nonpublic/news_output.php +++ b/www-ssl/nonpublic/news_output.php @@ -18,7 +18,7 @@ if( isset( $_POST["text"]) && isset( $_POST["betreff"]) && IsSet( $_POST["date"] if( !IsSet( $_GET["news_begin"])) $_GET["news_begin"]=0; - + if( !IsSet( $_GET["DISPLAY_NEWS"])) $_GET["DISPLAY_NEWS"] = 5; @@ -66,7 +66,7 @@ $dis_rows = round (($rows / $DISPLAY_NEWS)+0.5); Print_Text(5); for ($i=1; $i <= $dis_rows; $i++) { - if (!((($i * $DISPLAY_NEWS) - $news_begin) == $DISPLAY_NEWS)) { + if (!((($i * $DISPLAY_NEWS) - $_GET["news_begin"]) == $DISPLAY_NEWS)) { echo "$i  "; } else { echo "$i  "; -- cgit v1.2.3-54-g00ecf