aboutsummaryrefslogtreecommitdiffstats
path: root/category.php
diff options
context:
space:
mode:
Diffstat (limited to 'category.php')
-rw-r--r--category.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/category.php b/category.php
index 8b0ade406..16d7a127e 100644
--- a/category.php
+++ b/category.php
@@ -38,10 +38,11 @@ if ( isset($_GET['cat']) )
if ( is_numeric($_GET['cat']) )
{
$url_params['section'] = 'categories';
- $url_params['category'] = $_GET['cat'];
- $result = get_cat_info($url_params['category']);
+ $result = get_cat_info( $_GET['cat'] );
if ( !empty($result) )
- $url_params['cat_name'] = $result['name'];
+ {
+ $url_params['category'] = $result;
+ }
}
elseif ( in_array($_GET['cat'],
array('best_rated','most_visited','recent_pics','recent_cats')