diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-10-18 00:43:34 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-10-18 00:43:34 +0000 |
commit | 79d51b19c17138aef43f2c01a8e2f5230970bff1 (patch) | |
tree | 3b8ceba21521611e1b3dce2154a58518f17eabe6 /index.php | |
parent | 6c962fc1bbf3730cb0eddbb62255cfb199c1faf8 (diff) |
- added an image sort order by privacy level (admins only)
- fix an IE6 display issue with quick search on index page
git-svn-id: http://piwigo.org/svn/branches/2.0@2769 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -197,7 +197,7 @@ if ( $page['section']=='search' and $page['start']==0 and $hints = array(); foreach ( $cats as $cat ) { - $hints[] = get_cat_display_name( array($cat) ); + $hints[] = get_cat_display_name( array($cat), '', false ); } $template->assign( 'category_search_results', $hints); } |