aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2009-02-14 02:26:23 +0000
committerrvelices <rv-github@modusoptimus.com>2009-02-14 02:26:23 +0000
commitf8880943590986d9489387c281801d5aba5d02d6 (patch)
tree4ddb30e8e52ff90a7eecaf1fb2162071cec0087d /index.php
parent6c92ade174238e18ed22f6f95234ab9604e3b445 (diff)
- missing index.php from prev commit
git-svn-id: http://piwigo.org/svn/trunk@3146 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'index.php')
-rw-r--r--index.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/index.php b/index.php
index eaea36635..ac1835544 100644
--- a/index.php
+++ b/index.php
@@ -228,8 +228,11 @@ if ( count($page['items']) > 0
// image order
$order_idx = pwg_get_session_var( 'image_order', 0 );
- $orders = get_category_preferred_image_orders();
- foreach ($orders as $order_id => $order)
+ $url = add_url_params(
+ duplicate_index_url(),
+ array('image_order' => '')
+ );
+ foreach (get_category_preferred_image_orders() as $order_id => $order)
{
if ($order[2])
{
@@ -237,10 +240,7 @@ if ( count($page['items']) > 0
'image_orders',
array(
'DISPLAY' => $order[0],
- 'URL' => add_url_params(
- duplicate_index_url(),
- array('image_order' => $order_id)
- ),
+ 'URL' => $url.$order_id,
'SELECTED' => ($order_idx == $order_id ? true:false),
)
);