diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-07-22 01:29:38 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-07-22 01:29:38 +0000 |
commit | b62eb188a2506fa35121a3a7d120d8ae163584dc (patch) | |
tree | 6741a8f762ff1af7f251c96c3891ffe86f819577 /picture.php | |
parent | 60b7843d3a9117694ae5803d5c77e7cb1232183c (diff) |
- remove admin :hover css rule (bouncing thumbnails in caddie FF)
- move some code from notification.php to notification.tpl
- remove some unused variables from picture.php
- make random.php work even if top_number is a lot (some issues solved with url length)
git-svn-id: http://piwigo.org/svn/trunk@2446 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | picture.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/picture.php b/picture.php index d4cde5ed7..6126a307e 100644 --- a/picture.php +++ b/picture.php @@ -42,7 +42,7 @@ $page['rank_of'] = array_flip($page['items']); if ( !isset($page['rank_of'][$page['image_id']]) ) { $query = ' -SELECT id, file, level +SELECT id, file, level FROM '.IMAGES_TABLE.' WHERE '; if ($page['image_id']>0) @@ -68,7 +68,7 @@ SELECT id, file, level if ( !isset($page['rank_of'][$page['image_id']]) ) {// the image can still be non accessible (filter/cat perm) and/or not in the set global $filter; - if ( !empty($filter['visible_images']) and + if ( !empty($filter['visible_images']) and !in_array($page['image_id'], explode(',',$filter['visible_images']) ) ) { page_not_found( 'The requested image is filtered', @@ -779,7 +779,6 @@ SELECT COUNT(*) AS nb_fav } //--------------------------------------------------------- picture information -$header_infos = array(); //for html header use // legend if (isset($picture['current']['comment']) and !empty($picture['current']['comment'])) @@ -789,7 +788,6 @@ if (isset($picture['current']['comment']) trigger_event('render_element_description', $picture['current']['comment']) ); - $header_infos['COMMENT'] = strip_tags($picture['current']['comment']); } $infos = array(); @@ -806,7 +804,6 @@ if (!empty($picture['current']['author'])) // '&search=author:'.$picture['current']['author'] // .'">'.$picture['current']['author'].'</a>'; $picture['current']['author']; - $header_infos['INFO_AUTHOR'] = $picture['current']['author']; } // creation date |