aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-01-21 07:43:54 +0000
committerz0rglub <z0rglub@piwigo.org>2004-01-21 07:43:54 +0000
commit9180de2f11005b75bbbd0966860e355530c3b2aa (patch)
tree1a3ac80ac5a80c8e834bde16280f100a8bfddf58
parente8f465a67a13ab6e8b662302c3910e94306d2b5f (diff)
Php warning correction
git-svn-id: http://piwigo.org/svn/branches/release-1_3@305 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--admin/cat_list.php2
-rw-r--r--index.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php
index 25ff9ea76..4f32b5ee1 100644
--- a/admin/cat_list.php
+++ b/admin/cat_list.php
@@ -30,7 +30,7 @@ $query.= ' FROM '.PREFIX_TABLE.'categories';
$query.= ';';
$row = mysql_fetch_array( mysql_query( $query ) );
if ( $row['nb_total_categories'] < $conf['max_LOV_categories']
- or $_GET['expand'] == 'all' )
+ or ( isset( $_GET['expand'] ) and $_GET['expand'] == 'all' ) )
{
$page['tab_expand'] = array();
$page['expand'] = 'all';
diff --git a/index.php b/index.php
index 3ac140699..2bb4ec48d 100644
--- a/index.php
+++ b/index.php
@@ -17,7 +17,7 @@
* *
***************************************************************************/
-define( PREFIX_INCLUDE, '' );
+define( 'PREFIX_INCLUDE', '' );
include_once( './include/functions.inc.php' );
database_connection();
// retrieving configuration informations