From ccc17f2f7f42aa2e0668198c1a60cb912f81da84 Mon Sep 17 00:00:00 2001 From: rvelices Date: Fri, 27 Apr 2007 04:20:56 +0000 Subject: [PATCH] category image order not correct git-svn-id: http://piwigo.org/svn/trunk@1983 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/section_init.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/section_init.inc.php b/include/section_init.inc.php index 24e853cb7..84e7a83b5 100644 --- a/include/section_init.inc.php +++ b/include/section_init.inc.php @@ -223,9 +223,9 @@ if ('categories' == $page['section']) ) ) { - if ( !empty($result['image_order']) and !isset($page['super_order_by']) ) + if ( !empty($page['category']['image_order']) and !isset($page['super_order_by']) ) { - $conf[ 'order_by' ] = ' ORDER BY '.$result['image_order']; + $conf[ 'order_by' ] = ' ORDER BY '.$page['category']['image_order']; } if (isset($page['flat']))