diff options
author | Chris Smith <toonarmy@phpbb.com> | 2008-11-09 15:48:37 +0000 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2008-11-09 15:48:37 +0000 |
commit | 184d410b80088407a41bdcc8eb79198c35f4fbb4 (patch) | |
tree | 8071a18d64bc1d55c34a590e6eb94c2e6f5d0e6a | |
parent | 101107da976e9dbda11475406b1de894a9173f82 (diff) | |
download | forums-184d410b80088407a41bdcc8eb79198c35f4fbb4.tar forums-184d410b80088407a41bdcc8eb79198c35f4fbb4.tar.gz forums-184d410b80088407a41bdcc8eb79198c35f4fbb4.tar.bz2 forums-184d410b80088407a41bdcc8eb79198c35f4fbb4.tar.xz forums-184d410b80088407a41bdcc8eb79198c35f4fbb4.zip |
Fix, small cosmetic issue made in r9004 with sort urls
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9054 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/memberlist.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/memberlist.php b/phpBB/memberlist.php index ccd0568fd6..c78acaf92d 100644 --- a/phpBB/memberlist.php +++ b/phpBB/memberlist.php @@ -1261,8 +1261,9 @@ switch ($mode) if ($mode) { $params[] = "mode=$mode"; - $sort_params[] = "mode=$mode"; } + $sort_params[] = "mode=$mode"; + $pagination_url = append_sid("{$phpbb_root_path}memberlist.$phpEx", implode('&', $params)); $sort_url = append_sid("{$phpbb_root_path}memberlist.$phpEx", implode('&', $sort_params)); |