aboutsummaryrefslogtreecommitdiffstats
path: root/admin/permalinks.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2007-04-13 23:58:28 +0000
committerrvelices <rv-github@modusoptimus.com>2007-04-13 23:58:28 +0000
commitf386460ec31490ced9d169afe500dfb00ae3aed8 (patch)
treedfbd2049af849520bd250cb2c399c2571470de6f /admin/permalinks.php
parent38ca856ea4adf9daf7cdb91e580a70ab176eb6f4 (diff)
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
Diffstat (limited to 'admin/permalinks.php')
-rw-r--r--admin/permalinks.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/permalinks.php b/admin/permalinks.php
index d5aa99463..f82f88fd7 100644
--- a/admin/permalinks.php
+++ b/admin/permalinks.php
@@ -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');
}