diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2008-08-29 11:50:01 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2008-08-29 11:50:01 +0000 |
commit | 91cf942af20f52a1a7ed996975e14585e8df46e3 (patch) | |
tree | d28d2160db9c7cf762fc2add3275b49a9586380d /phpBB/includes/ucp/ucp_pm_viewfolder.php | |
parent | 761897cb1c778e4be19aeaabe70f81a7c47ef40e (diff) | |
download | forums-91cf942af20f52a1a7ed996975e14585e8df46e3.tar forums-91cf942af20f52a1a7ed996975e14585e8df46e3.tar.gz forums-91cf942af20f52a1a7ed996975e14585e8df46e3.tar.bz2 forums-91cf942af20f52a1a7ed996975e14585e8df46e3.tar.xz forums-91cf942af20f52a1a7ed996975e14585e8df46e3.zip |
#33155
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8795 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/ucp/ucp_pm_viewfolder.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_pm_viewfolder.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_viewfolder.php b/phpBB/includes/ucp/ucp_pm_viewfolder.php index 8c765b1e90..360912ae49 100644 --- a/phpBB/includes/ucp/ucp_pm_viewfolder.php +++ b/phpBB/includes/ucp/ucp_pm_viewfolder.php @@ -511,9 +511,9 @@ function get_pm_from($folder_id, $folder, $user_id) 'S_SELECT_SORT_DAYS' => $s_limit_days, 'S_TOPIC_ICONS' => ($config['enable_pm_icons']) ? true : false, - 'U_POST_NEW_TOPIC' => ($auth->acl_get('u_sendpm')) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=pm&mode=compose') : '', - 'S_PM_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", "i=pm&mode=view&action=view_folder&f=$folder_id")) - ); + 'U_POST_NEW_TOPIC' => ($auth->acl_get('u_sendpm')) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=pm&mode=compose') : '', + 'S_PM_ACTION' => append_sid("{$phpbb_root_path}ucp.$phpEx", "i=pm&mode=view&action=view_folder&f=$folder_id" . (($start !== 0) ? "&start=$start" : '')), + )); // Grab all pm data $rowset = $pm_list = array(); |