aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php13
1 files changed, 8 insertions, 5 deletions
diff --git a/index.php b/index.php
index 0cf3a11ca..b74c370c5 100644
--- a/index.php
+++ b/index.php
@@ -260,16 +260,19 @@ if ( count($page['items']) > 0
$order_idx = pwg_get_session_var( 'image_order', 0 );
$orders = get_category_preferred_image_orders();
- for ($i = 0; $i < count($orders); $i++)
+ foreach ($orders as $order_id => $order)
{
- if ($orders[$i][2])
+ if ($order[2])
{
$template->append(
'image_orders',
array(
- 'DISPLAY' => $orders[$i][0],
- 'URL' => add_url_params( duplicate_index_url(), array('image_order'=>$i) ),
- 'SELECTED' => ($order_idx==$i ? true:false),
+ 'DISPLAY' => $order[0],
+ 'URL' => add_url_params(
+ duplicate_index_url(),
+ array('image_order' => $order_id)
+ ),
+ 'SELECTED' => ($order_idx == $order_id ? true:false),
)
);
}