diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-07-26 00:51:08 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-07-26 00:51:08 +0000 |
commit | aca06a08aa8d2148ba6198811907fbb61a4e8f57 (patch) | |
tree | 021145a2e9d9e75ace7ce0013a66756a22684475 /include/section_init.inc.php | |
parent | 7e79e15d180c5621d83a6906968317de58eae722 (diff) |
feature 169: each category can have its own image order
git-svn-id: http://piwigo.org/svn/trunk@1500 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/section_init.inc.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/section_init.inc.php b/include/section_init.inc.php index b2bb4c90e..1aa58516c 100644 --- a/include/section_init.inc.php +++ b/include/section_init.inc.php @@ -342,6 +342,11 @@ if ('categories' == $page['section']) if (!isset($page['chronology_field'])) { + if ( !empty($result['image_order']) and !isset($page['super_order_by']) ) + { + $conf[ 'order_by' ] = ' ORDER BY '.$result['image_order']; + } + $query = ' SELECT image_id FROM '.IMAGE_CATEGORY_TABLE.' |