merge r1955 from branch-1_7 to trunk:

flat view small improvements (picture page on root category sorter urls and works in several cases)
correction in permalinks admin (error was assignment in if instead of comparison)

git-svn-id: http://piwigo.org/svn/trunk@1956 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2007-04-13 23:58:28 +00:00
parent 38ca856ea4
commit f386460ec3
3 changed files with 17 additions and 3 deletions
+1 -1
View File
@@ -137,7 +137,7 @@ while ( $row=mysql_fetch_assoc($result) )
$categories[] = $row;
}
if ( !count($sort_by) or $sort_by[0]='name')
if ( !count($sort_by) or $sort_by[0]=='name')
{
usort($categories, 'global_rank_compare');
}