mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-19 08:02:59 +02:00
- feature 280: code simplification
git-svn-id: http://piwigo.org/svn/trunk@1022 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -617,22 +617,17 @@ SELECT COUNT(DISTINCT(id)) AS count
|
||||
create_navigation_bar( $url, $page['cat_nb_images'], $page['start'],
|
||||
$user['nb_image_page'], 'back' );
|
||||
}
|
||||
|
||||
|
||||
if ($page['cat'] != 'most_visited' and $page['cat'] != 'best_rated')
|
||||
{
|
||||
$available_image_orders = get_category_preferred_image_orders();
|
||||
|
||||
|
||||
$order_idx=0;
|
||||
if ( isset($_GET['image_order']) )
|
||||
{
|
||||
$order_idx = $_GET['image_order'];
|
||||
setcookie( 'pwg_image_order', $order_idx, 0 );
|
||||
}
|
||||
else if ( isset($_COOKIE['pwg_image_order']) )
|
||||
if ( isset($_COOKIE['pwg_image_order']) )
|
||||
{
|
||||
$order_idx = $_COOKIE['pwg_image_order'];
|
||||
}
|
||||
|
||||
|
||||
if ( $order_idx > 0 )
|
||||
{
|
||||
$order = $available_image_orders[$order_idx][1];
|
||||
|
||||
Reference in New Issue
Block a user