mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-28 02:30:29 +02:00
- introduce new function build_url to easily build a valid url from the user->page object as well as optionally removing certain keys
- changed attachment config to utilize the config build methods - cleaned up posting.php - the submit/delete_post functions are now usable (functions_posting.php) - adjusted header icons (transparency) - a bunch of fixes for mssql - bug fixes git-svn-id: file:///svn/phpbb/trunk@5902 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -190,7 +190,7 @@ switch ($mode)
|
||||
$db->sql_freeresult($result);
|
||||
|
||||
$template->assign_vars(array(
|
||||
'PM_IMG' => $user->img('btn_pm', $user->lang['MESSAGE']))
|
||||
'PM_IMG' => $user->img('btn_pm', $user->lang['SEND_PRIVATE_MESSAGE']))
|
||||
);
|
||||
break;
|
||||
|
||||
@@ -411,7 +411,7 @@ switch ($mode)
|
||||
'SIGNATURE' => (!empty($member['user_sig'])) ? str_replace("\n", '<br />', $member['user_sig']) : '',
|
||||
|
||||
'AVATAR_IMG' => $poster_avatar,
|
||||
'PM_IMG' => $user->img('btn_pm', $user->lang['MESSAGE']),
|
||||
'PM_IMG' => $user->img('btn_pm', $user->lang['SEND_PRIVATE_MESSAGE']),
|
||||
'EMAIL_IMG' => $user->img('btn_email', $user->lang['EMAIL']),
|
||||
'WWW_IMG' => $user->img('btn_www', $user->lang['WWW']),
|
||||
'ICQ_IMG' => $user->img('btn_icq', $user->lang['ICQ']),
|
||||
@@ -1099,7 +1099,7 @@ switch ($mode)
|
||||
'TOTAL_USERS' => ($total_users == 1) ? $user->lang['LIST_USER'] : sprintf($user->lang['LIST_USERS'], $total_users),
|
||||
|
||||
'PROFILE_IMG' => $user->img('btn_profile', $user->lang['PROFILE']),
|
||||
'PM_IMG' => $user->img('btn_pm', $user->lang['MESSAGE']),
|
||||
'PM_IMG' => $user->img('btn_pm', $user->lang['SEND_PRIVATE_MESSAGE']),
|
||||
'EMAIL_IMG' => $user->img('btn_email', $user->lang['EMAIL']),
|
||||
'WWW_IMG' => $user->img('btn_www', $user->lang['WWW']),
|
||||
'ICQ_IMG' => $user->img('btn_icq', $user->lang['ICQ']),
|
||||
|
Reference in New Issue
Block a user