diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2004-10-30 17:07:52 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2004-10-30 17:07:52 +0000 |
| commit | c987a54bb0bdffff48133ee38baf385eab45eacc (patch) | |
| tree | 314a937da71720b79f0bd46f60cd432e77350545 /phpBB/includes/ucp/ucp_prefs.php | |
| parent | 34a954eaf1b9028577717eb26a9250969aac0fcc (diff) | |
| download | forums-c987a54bb0bdffff48133ee38baf385eab45eacc.tar forums-c987a54bb0bdffff48133ee38baf385eab45eacc.tar.gz forums-c987a54bb0bdffff48133ee38baf385eab45eacc.tar.bz2 forums-c987a54bb0bdffff48133ee38baf385eab45eacc.tar.xz forums-c987a54bb0bdffff48133ee38baf385eab45eacc.zip | |
more ucp updates
git-svn-id: file:///svn/phpbb/trunk@5012 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/ucp/ucp_prefs.php')
| -rw-r--r-- | phpBB/includes/ucp/ucp_prefs.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/ucp/ucp_prefs.php b/phpBB/includes/ucp/ucp_prefs.php index 27002cbeaf..dde3442002 100644 --- a/phpBB/includes/ucp/ucp_prefs.php +++ b/phpBB/includes/ucp/ucp_prefs.php @@ -231,8 +231,8 @@ class ucp_prefs extends module $sort_by_text = array('a' => $user->lang['AUTHOR'], 't' => $user->lang['POST_TIME'], 'r' => $user->lang['REPLIES'], 's' => $user->lang['SUBJECT'], 'v' => $user->lang['VIEWS']); $sort_by_sql = array('a' => 't.topic_first_poster_name', 't' => 't.topic_last_post_time', 'r' => 't.topic_replies', 's' => 't.topic_title', 'v' => 't.topic_views'); - $s_limit_days = $s_sort_key = $s_sort_dir = ''; - gen_sort_selects($limit_days, $sort_by_text, $st, $sk, $sd, &$s_limit_days, &$s_sort_key, &$s_sort_dir); + $s_limit_days = $s_sort_key = $s_sort_dir = $u_sort_param = ''; + gen_sort_selects($limit_days, $sort_by_text, $st, $sk, $sd, $s_limit_days, $s_sort_key, $s_sort_dir, $u_sort_param); $images = (isset($images)) ? $images : $user->optionget('viewimg'); $images_yes = ($images) ? ' checked="checked"' : ''; |
