diff options
author | mistic100 <mistic@piwigo.org> | 2012-01-10 20:50:25 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2012-01-10 20:50:25 +0000 |
commit | e349749d423b042afe7ce6f8dc006544d9e6710a (patch) | |
tree | ec408aa525b52dc181e37f1341be6763693d2c5b /admin/configuration.php | |
parent | 758f9dd195e025c4140eab7d4c0fd8f8ba28711a (diff) |
bug:2540 When default photos order is only by rank, failure outside albums
define a default order_by + some javascript for limit number of fields
git-svn-id: http://piwigo.org/svn/trunk@12872 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/configuration.php')
-rw-r--r-- | admin/configuration.php | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/admin/configuration.php b/admin/configuration.php index de8311b97..a59e815fc 100644 --- a/admin/configuration.php +++ b/admin/configuration.php @@ -135,15 +135,18 @@ if (isset($_POST['submit'])) { $order_by = array(); $order_by_inside_category = array(); + for ($i=0; $i<count($_POST['order_by_field']); $i++) { - if ($i>5) continue; - if ($_POST['order_by_field'][$i] == '') + if ( $i >= (count($sort_fields)-1) ) break; // limit to the number of available parameters + if ( empty($_POST['order_by_field'][$i]) ) { array_push($page['errors'], l10n('No field selected')); + break; } else { + // there is no rank outside categories if ($_POST['order_by_field'][$i] != 'rank') { $order_by[] = $_POST['order_by_field'][$i].' '.$_POST['order_by_direction'][$i]; @@ -151,8 +154,15 @@ if (isset($_POST['submit'])) $order_by_inside_category[] = $_POST['order_by_field'][$i].' '.$_POST['order_by_direction'][$i]; } } + // must define a default order_by if user want to order by rank only + if ( count($order_by) == 0 ) + { + $order_by = array('id ASC'); + } + $_POST['order_by'] = 'ORDER BY '.implode(', ', $order_by); $_POST['order_by_inside_category'] = 'ORDER BY '.implode(', ', $order_by_inside_category); + unset($_POST['order_by_field']); } } |