Minor corrections of PHP warnings

git-svn-id: http://piwigo.org/svn/branches/release-1_3@276 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
gweltas
2004-01-12 23:41:53 +00:00
parent 7b8d0b8dd8
commit 0fa0c8bb07
9 changed files with 41 additions and 26 deletions
+12 -5
View File
@@ -109,12 +109,15 @@ function get_user_plain_structure()
{
$category = array();
foreach ( $infos as $info ) {
$category[$info] = $row[$info];
if ( $info == 'date_last' )
if ( $info == 'uc.date_last' )
{
list($year,$month,$day) = explode( '-', $row[$info] );
$category[$info] = mktime(0,0,0,$month,$day,$year);
list($year,$month,$day) = explode( '-', $row['date_last'] );
$category['date_last'] = mktime(0,0,0,$month,$day,$year);
}
else
{
$category[$info] = $row[$info];
}
}
$plain_structure[$row['id']] = $category;
}
@@ -411,7 +414,11 @@ function initialize_category( $calling_page = 'category' )
// By default, it is the same as the $user['nb_image_page']
$page['nb_image_page'] = $user['nb_image_page'];
// $url is used to create the navigation bar
$url = './category.php?cat='.$page['cat'].'&expand='.$page['expand'];
$url = './category.php?cat='.$page['cat'];
if ( isset($page['expand']) )
{
$url.= '&expand='.$page['expand'];
}
// simple category
if ( is_numeric( $page['cat'] ) )
{
+4 -2
View File
@@ -207,12 +207,14 @@ function check_login_authorization()
{
global $user,$lang,$conf,$page;
if ( $user['is_the_guest']
and ( $conf['access'] == 'restricted' or $page['cat'] == 'fav' ) )
if ( $user['is_the_guest'])
{
if ( $conf['access'] == 'restricted' || (isset($page['cat']) && $page['cat'] == 'fav' ) )
{
echo '<div style="text-align:center;">'.$lang['only_members'].'<br />';
echo '<a href="./identification.php">'.$lang['ident_title'].'</a></div>';
exit();
}
}
}
?>