diff options
author | Nils Adermann <naderman@naderman.de> | 2006-03-23 19:23:52 +0000 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2006-03-23 19:23:52 +0000 |
commit | 56a70484ef567d2a6c238cd22bf5f3bb106f52a3 (patch) | |
tree | df18c4ebb726cc6393681568554bb33994158783 /phpBB/includes/ucp/ucp_main.php | |
parent | cccada69c0def66e4f4f8059c79a53dfa2ae20db (diff) | |
download | forums-56a70484ef567d2a6c238cd22bf5f3bb106f52a3.tar forums-56a70484ef567d2a6c238cd22bf5f3bb106f52a3.tar.gz forums-56a70484ef567d2a6c238cd22bf5f3bb106f52a3.tar.bz2 forums-56a70484ef567d2a6c238cd22bf5f3bb106f52a3.tar.xz forums-56a70484ef567d2a6c238cd22bf5f3bb106f52a3.zip |
- some adjustments for search related config options
- one year is 365 days long (52 * 7 = 364, but we have one more day each year ;-)) [Bug #1181]
- fixed search own posts link in UCP [Bug #1163]
- corrections to timezone selection [Bug #1148]
- fix quickmod tools on post details page [Bug #1188]
git-svn-id: file:///svn/phpbb/trunk@5705 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/ucp/ucp_main.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_main.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_main.php b/phpBB/includes/ucp/ucp_main.php index 8f5cc6507d..1b415b5074 100644 --- a/phpBB/includes/ucp/ucp_main.php +++ b/phpBB/includes/ucp/ucp_main.php @@ -169,7 +169,7 @@ class ucp_main // 'S_GROUP_OPTIONS' => $group_options, 'S_SHOW_ACTIVITY' => ($config['load_user_activity']) ? true : false, - 'U_SEARCH_USER' => ($auth->acl_get('u_search')) ? "{$phpbb_root_path}search.$phpEx$SID&search_author=" . urlencode($user->data['username']) . "&show_results=posts" : '', + 'U_SEARCH_USER' => ($auth->acl_get('u_search')) ? "{$phpbb_root_path}search.$phpEx$SID&author=" . urlencode($user->data['username']) . "&sr=posts" : '', ) ); break; |