diff --git a/phpBB/adm/index.php b/phpBB/adm/index.php index 4c71fe0aa9..9401473353 100644 --- a/phpBB/adm/index.php +++ b/phpBB/adm/index.php @@ -127,6 +127,14 @@ function adm_page_header($page_title) 'U_ADM_INDEX' => append_sid("{$phpbb_admin_path}index.$phpEx"), 'U_INDEX' => append_sid("{$phpbb_root_path}index.$phpEx"), + 'T_IMAGES_PATH' => "{$phpbb_root_path}images/", + 'T_SMILIES_PATH' => "{$phpbb_root_path}{$config['smilies_path']}/", + 'T_AVATAR_PATH' => "{$phpbb_root_path}{$config['avatar_path']}/", + 'T_AVATAR_GALLERY_PATH' => "{$phpbb_root_path}{$config['avatar_gallery_path']}/", + 'T_ICONS_PATH' => "{$phpbb_root_path}{$config['icons_path']}/", + 'T_RANKS_PATH' => "{$phpbb_root_path}{$config['ranks_path']}/", + 'T_UPLOAD_PATH' => "{$phpbb_root_path}{$config['upload_path']}/", + 'S_CONTENT_DIRECTION' => $user->lang['DIRECTION'], 'S_CONTENT_ENCODING' => $user->lang['ENCODING'], 'S_CONTENT_DIR_LEFT' => $user->lang['LEFT'], diff --git a/phpBB/adm/style/acp_attachments.html b/phpBB/adm/style/acp_attachments.html index 70a2415b6c..964a07bf67 100644 --- a/phpBB/adm/style/acp_attachments.html +++ b/phpBB/adm/style/acp_attachments.html @@ -176,11 +176,11 @@
{L_USERNAMES_EXPLAIN}
');
- document.write('![]() | ');
+ document.write('![]() | ');
}
diff --git a/phpBB/adm/style/permission_mask.html b/phpBB/adm/style/permission_mask.html
index beec9d011f..b98af2dfa4 100644
--- a/phpBB/adm/style/permission_mask.html
+++ b/phpBB/adm/style/permission_mask.html
@@ -157,7 +157,7 @@
|
style="display: none;"> - + | {p_mask.f_mask.PADDING} {p_mask.f_mask.FOLDER_IMAGE} {p_mask.f_mask.NAME} | diff --git a/phpBB/adm/style/simple_header.html b/phpBB/adm/style/simple_header.html index 67e66b3a9d..836c2b8a52 100644 --- a/phpBB/adm/style/simple_header.html +++ b/phpBB/adm/style/simple_header.html @@ -78,7 +78,7 @@ function marklist(id, name, state) */ function swatch() { - window.open('{UA_SWATCH}', '_swatch', 'height=115, resizable=yes, scrollbars=no, width=636'); + window.open('{UA_SWATCH}', '_swatch', 'height=150, resizable=yes, scrollbars=no, width=636'); return false; } diff --git a/phpBB/cron.php b/phpBB/cron.php index 9f2c59966c..38bcd38d3e 100644 --- a/phpBB/cron.php +++ b/phpBB/cron.php @@ -207,14 +207,15 @@ switch ($cron_type) break; } -// Unload cache, must be done before the DB connection is closed -if (!empty($cache)) +// Unloading cache and closing db after having done the dirty work. +if ($use_shutdown_function) { - $cache->unload(); + register_shutdown_function('garbage_collection'); +} +else +{ + garbage_collection(); } - -// Close our DB connection. -$db->sql_close(); // Output transparent gif header('Cache-Control: no-cache'); diff --git a/phpBB/includes/acp/acp_language.php b/phpBB/includes/acp/acp_language.php index e54dc41dec..63b3c0dcdd 100644 --- a/phpBB/includes/acp/acp_language.php +++ b/phpBB/includes/acp/acp_language.php @@ -775,7 +775,7 @@ class acp_language $radio_buttons = ''; foreach ($methods as $method) { - $radio_buttons .= ' ' . $method . ' '; + $radio_buttons .= ' ' . $method . ' '; } $template->assign_vars(array( diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php index 08b8126c36..cd93de4deb 100644 --- a/phpBB/includes/acp/acp_styles.php +++ b/phpBB/includes/acp/acp_styles.php @@ -1850,7 +1850,7 @@ pagination_sep = \'{PAGINATION_SEP}\' $format_buttons = ''; foreach ($methods as $method) { - $format_buttons .= ' ' . $method . ' '; + $format_buttons .= ' ' . $method . ' '; } $template->assign_vars(array( diff --git a/phpBB/includes/acp/acp_users.php b/phpBB/includes/acp/acp_users.php index f2ce3ee18c..0448b7e568 100644 --- a/phpBB/includes/acp/acp_users.php +++ b/phpBB/includes/acp/acp_users.php @@ -223,8 +223,8 @@ class acp_users user_ban(substr($action, 3), $ban, 0, 0, 0, $user->lang[$reason]); - add_log('admin', $log, $user->lang['reason']); - add_log('user', $user_id, $log, $user->lang['reason']); + add_log('admin', $log, $user->lang[$reason]); + add_log('user', $user_id, $log, $user->lang[$reason]); trigger_error($user->lang['BAN_SUCCESSFUL'] . adm_back_link($this->u_action . '&u=' . $user_id)); diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index d6cd9efd1f..a7adb4d600 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -2747,6 +2747,19 @@ function page_footer() $template->display('body'); + garbage_collection(); + + exit; +} + +/** +* Closing the cache object and the database +* Cool function name, eh? We might want to add operations to it later +*/ +function garbage_collection() +{ + global $cache, $db; + // Unload cache, must be done before the DB connection if closed if (!empty($cache)) { @@ -2755,8 +2768,6 @@ function page_footer() // Close our DB connection. $db->sql_close(); - - exit; } ?> \ No newline at end of file diff --git a/phpBB/includes/functions_admin.php b/phpBB/includes/functions_admin.php index 748295e632..88edddad50 100644 --- a/phpBB/includes/functions_admin.php +++ b/phpBB/includes/functions_admin.php @@ -2119,7 +2119,7 @@ function view_log($mode, &$log, &$log_count, $limit = 0, $offset = 0, $forum_id 'forum_id' => $row['forum_id'], 'topic_id' => $row['topic_id'], - 'viewforum' => ($row['forum_id'] && $auth->acl_get('f_read', $row['forum_id'])) ? append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $row['forum_id']) : '', + 'viewforum' => ($row['forum_id'] && $auth->acl_get('f_read', $row['forum_id'])) ? append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $row['forum_id']) : false, 'action' => (isset($user->lang[$row['log_operation']])) ? $user->lang[$row['log_operation']] : '{' . ucfirst(str_replace('_', ' ', $row['log_operation'])) . '}', ); @@ -2195,8 +2195,8 @@ function view_log($mode, &$log, &$log_count, $limit = 0, $offset = 0, $forum_id foreach ($log as $key => $row) { - $log[$key]['viewtopic'] = (isset($is_auth[$row['topic_id']])) ? append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $is_auth[$row['topic_id']] . '&t=' . $row['topic_id']) : ''; - $log[$key]['viewlogs'] = (isset($is_mod[$row['topic_id']])) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=logs&mode=topic_logs&t=' . $row['topic_id'], true, $user->session_id) : ''; + $log[$key]['viewtopic'] = (isset($is_auth[$row['topic_id']])) ? append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $is_auth[$row['topic_id']] . '&t=' . $row['topic_id']) : false; + $log[$key]['viewlogs'] = (isset($is_mod[$row['topic_id']])) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=logs&mode=topic_logs&t=' . $row['topic_id'], true, $user->session_id) : false; } } @@ -2214,7 +2214,7 @@ function view_log($mode, &$log, &$log_count, $limit = 0, $offset = 0, $forum_id foreach ($log as $key => $row) { - $log[$key]['reportee_username'] = (isset($reportee_names_list[$row['reportee_id']])) ? '' . $reportee_names_list[$row['reportee_id']] . '' : ''; + $log[$key]['reportee_username'] = (isset($reportee_names_list[$row['reportee_id']])) ? '' . $reportee_names_list[$row['reportee_id']] . '' : false; } } diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php index 319e8810b6..a8d0932d2a 100644 --- a/phpBB/includes/functions_privmsgs.php +++ b/phpBB/includes/functions_privmsgs.php @@ -280,7 +280,7 @@ function check_rule(&$rules, &$rule_row, &$message_row, $user_id) case ACTION_MARK_AS_READ: case ACTION_MARK_AS_IMPORTANT: case ACTION_DELETE_MESSAGE: - return array('action' => $rule_row['rule_action'], 'unread' => $message_row['unread'], 'important' => $message_row['important']); + return array('action' => $rule_row['rule_action'], 'unread' => $message_row['unread'], 'marked' => $message_row['marked']); break; default: @@ -465,7 +465,7 @@ function place_pm_into_folder(&$global_privmsgs_rules, $release = false) break; case ACTION_MARK_AS_IMPORTANT: - if (!$rule_ary['important']) + if (!$rule_ary['marked']) { $important_ids[] = $msg_id; } diff --git a/phpBB/includes/functions_profile_fields.php b/phpBB/includes/functions_profile_fields.php index d332fb7bc7..dfc72b54c4 100644 --- a/phpBB/includes/functions_profile_fields.php +++ b/phpBB/includes/functions_profile_fields.php @@ -963,7 +963,7 @@ class custom_profile_admin extends custom_profile ); $options = array( - 0 => array('TITLE' => $user->lang['FIELD_TYPE'], 'EXPLAIN' => $user->lang['BOOL_TYPE_EXPLAIN'], 'FIELD' => 'vars['field_length'] == 1) ? ' checked="checked"' : '') . ' />' . $user->lang['RADIO_BUTTONS'] . ' vars['field_length'] == 2) ? ' checked="checked"' : '') . ' />' . $user->lang['CHECKBOX'] . ' '), + 0 => array('TITLE' => $user->lang['FIELD_TYPE'], 'EXPLAIN' => $user->lang['BOOL_TYPE_EXPLAIN'], 'FIELD' => 'vars['field_length'] == 1) ? ' checked="checked"' : '') . ' />' . $user->lang['RADIO_BUTTONS'] . ' vars['field_length'] == 2) ? ' checked="checked"' : '') . ' />' . $user->lang['CHECKBOX'] . ' '), 1 => array('TITLE' => $user->lang['DEFAULT_VALUE'], 'FIELD' => $this->process_field_row('preview', $profile_row)) ); @@ -1029,7 +1029,7 @@ class custom_profile_admin extends custom_profile $options = array( 0 => array('TITLE' => $user->lang['DEFAULT_VALUE'], 'FIELD' => $this->process_field_row('preview', $profile_row)), - 1 => array('TITLE' => $user->lang['ALWAYS_TODAY'], 'FIELD' => ' ' . $user->lang['YES'] . ' ' . $user->lang['NO']), + 1 => array('TITLE' => $user->lang['ALWAYS_TODAY'], 'FIELD' => ' ' . $user->lang['YES'] . ' ' . $user->lang['NO']), ); return $options; diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index b817ee962d..e31b9e187e 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -324,7 +324,7 @@ class mcp_queue $poster = $row['username']; } - $s_checkbox = ''; + $s_checkbox = ''; $global_topic = ($row['forum_id']) ? false : true; if ($global_topic) diff --git a/phpBB/includes/mcp/mcp_reports.php b/phpBB/includes/mcp/mcp_reports.php index f62bb88d28..ef19dc2e1a 100755 --- a/phpBB/includes/mcp/mcp_reports.php +++ b/phpBB/includes/mcp/mcp_reports.php @@ -295,7 +295,7 @@ class mcp_reports $poster = $row['username']; } - $s_checkbox = ''; + $s_checkbox = ''; $template->assign_block_vars('postrow', array( 'U_VIEWFORUM' => append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $row['forum_id']), diff --git a/phpBB/includes/mcp/mcp_topic.php b/phpBB/includes/mcp/mcp_topic.php index 7f290a5f03..1c0c1d9a68 100644 --- a/phpBB/includes/mcp/mcp_topic.php +++ b/phpBB/includes/mcp/mcp_topic.php @@ -119,7 +119,7 @@ function mcp_topic_view($id, $mode, $action) $message = str_replace("\n", '{L_LOGIN_LOGOUT} |
{L_USERNAME}: {L_PASSWORD}: {L_LOG_ME_IN} | +{L_USERNAME}: {L_PASSWORD}: {L_LOG_ME_IN} |
{topicrow.REPLIES}
{topicrow.LAST_POST_TIME}
checked="checked" />{L_NONE} checked="checked" /> |
+ checked="checked" />{L_NONE} checked="checked" /> |
+ | {L_CC_EMAIL} |
{L_NONE} |
+ {L_NONE} |
+ | {L_DISABLE_BBCODE} | |||||||||||||||||||||||||||||||||||||||||||||||||||
+ | {L_DISABLE_SMILIES} | |||||||||||||||||||||||||||||||||||||||||||||||||||
+ | {L_DISABLE_MAGIC_URL} | |||||||||||||||||||||||||||||||||||||||||||||||||||
+ | {L_ATTACH_SIG} | |||||||||||||||||||||||||||||||||||||||||||||||||||
+ | {L_NOTIFY_REPLY} | |||||||||||||||||||||||||||||||||||||||||||||||||||
+ | {L_LOCK_TOPIC} | |||||||||||||||||||||||||||||||||||||||||||||||||||
+ | {L_LOCK_POST} [{L_LOCK_POST_EXPLAIN}] | |||||||||||||||||||||||||||||||||||||||||||||||||||
- | {L_CHANGE_TOPIC_TO}{L_POST_TOPIC_AS}: {topic_type.L_TOPIC_TYPE} | +{L_CHANGE_TOPIC_TO}{L_POST_TOPIC_AS}: {topic_type.L_TOPIC_TYPE} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_POLL_DELETE}: | -+ | |||||||||||||||||||||||||||||||||||||||||||||||||||
{L_POLL_VOTE_CHANGE}: {L_POLL_VOTE_CHANGE_EXPLAIN} |
- + | |||||||||||||||||||||||||||||||||||||||||||||||||||
{L_POLL_DELETE} | -+ | |||||||||||||||||||||||||||||||||||||||||||||||||||
- + - + | {poll_option.POLL_OPTION_CAPTION} | diff --git a/phpBB/styles/subSilver/template/report_body.html b/phpBB/styles/subSilver/template/report_body.html index 78c219a0b7..f586389be0 100644 --- a/phpBB/styles/subSilver/template/report_body.html +++ b/phpBB/styles/subSilver/template/report_body.html @@ -18,7 +18,7 @@|||||||||||||||||||||||||||||||||||||||||||||||||||
{L_REPORT_NOTIFY}: {L_REPORT_NOTIFY_EXPLAIN} |
- checked="checked" /> {L_YES} checked="checked" /> {L_NO} | +checked="checked" /> {L_YES} checked="checked" /> {L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{attachrow.POST_TIME} | {attachrow.SIZE} | {attachrow.DOWNLOAD_COUNT} | -+ | |||||||||||||||||||||||||||||||||||||||||||||||||
- checked="checked" /> {L_PARSE_BBCODE} checked="checked" /> {L_PARSE_SMILIES} checked="checked" /> {L_PARSE_URLS} + checked="checked" /> {L_PARSE_BBCODE} checked="checked" /> {L_PARSE_SMILIES} checked="checked" /> {L_PARSE_URLS} |
||||||||||||||||||||||||||||||||||||||||||||||||||||
{L_AVATAR_EXPLAIN} |
- {AVATAR_IMAGE} {L_DELETE_AVATAR} |
+ {AVATAR_IMAGE} {L_DELETE_AVATAR} |
{L_YES}{L_NO} | {member.JOINED} | {member.USER_POSTS} | -+ | diff --git a/phpBB/styles/subSilver/template/ucp_groups_membership.html b/phpBB/styles/subSilver/template/ucp_groups_membership.html index bd280acc87..f73a887d41 100644 --- a/phpBB/styles/subSilver/template/ucp_groups_membership.html +++ b/phpBB/styles/subSilver/template/ucp_groups_membership.html @@ -20,13 +20,13 @@ | |||||||||||||||||||||||||||||||||||||||||||||
checked="checked" value="{leader.GROUP_ID}" /> | +checked="checked" value="{leader.GROUP_ID}" /> |
{leader.GROUP_NAME}
{leader.GROUP_DESC} {leader.GROUP_STATUS} |
- + | |||||||||||||||||||||||||||||||||||||||||||||||||
checked="checked" value="{member.GROUP_ID}" /> | +checked="checked" value="{member.GROUP_ID}" /> |
{member.GROUP_NAME}
{member.GROUP_DESC} {member.GROUP_STATUS} |
- + | + | @@ -77,7 +77,7 @@ | + | diff --git a/phpBB/styles/subSilver/template/ucp_main_bookmarks.html b/phpBB/styles/subSilver/template/ucp_main_bookmarks.html index bb11d7c922..808a742c7b 100644 --- a/phpBB/styles/subSilver/template/ucp_main_bookmarks.html +++ b/phpBB/styles/subSilver/template/ucp_main_bookmarks.html @@ -39,7 +39,7 @@ | {L_MOVE_UP} | {L_MOVE_DOWN} | -+ | |||||||||||||||||||||||||||||||||||||||||||
{L_LOAD_DRAFT} {L_VIEW_EDIT} |
- + | |||||||||||||||||||||||||||||||||||||||||||||||||||
{forumrow.FORUM_FOLDER_IMG} | {forumrow.LAST_POST_TIME} {forumrow.LAST_POST_AUTHOR}{forumrow.LAST_POST_AUTHOR} {forumrow.LAST_POST_IMG}{L_NO_POSTS} |
- + | ||||||||||||||||||||||||||||||||||||||||||||||||||
+ | ||||||||||||||||||||||||||||||||||||||||||||||||||||
- | {L_MOVE_DELETED_MESSAGES_TO} | +{L_MOVE_DELETED_MESSAGES_TO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
- | {L_DELETE_MESSAGES_IN_FOLDER} | +{L_DELETE_MESSAGES_IN_FOLDER} | ||||||||||||||||||||||||||||||||||||||||||||||||||
@@ -167,15 +167,15 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||
{L_IF_FOLDER_FULL}: | -{L_DELETE_OLDEST_MESSAGES} | +{L_DELETE_OLDEST_MESSAGES} | ||||||||||||||||||||||||||||||||||||||||||||||||||
- | {L_MOVE_TO_FOLDER}: | +{L_MOVE_TO_FOLDER}: | ||||||||||||||||||||||||||||||||||||||||||||||||||
- | {L_HOLD_NEW_MESSAGES} | +{L_HOLD_NEW_MESSAGES} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_DEFAULT_ACTION}: {L_DEFAULT_ACTION_EXPLAIN} |
diff --git a/phpBB/styles/subSilver/template/ucp_pm_viewfolder.html b/phpBB/styles/subSilver/template/ucp_pm_viewfolder.html
index 603f9f821e..08e0325cc9 100644
--- a/phpBB/styles/subSilver/template/ucp_pm_viewfolder.html
+++ b/phpBB/styles/subSilver/template/ucp_pm_viewfolder.html
@@ -71,7 +71,7 @@
{messagerow.SENT_TIME} |
- + | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_SHOW_EMAIL}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_ADMIN_EMAIL}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_ALLOW_PM}: {L_ALLOW_PM_EXPLAIN} |
- checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_HIDE_ONLINE}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_NOTIFY_METHOD}: {L_NOTIFY_METHOD_EXPLAIN} |
- checked="checked" />{L_NOTIFY_METHOD_EMAIL} checked="checked" />{L_NOTIFY_METHOD_IM} checked="checked" />{L_NOTIFY_METHOD_BOTH} | +checked="checked" />{L_NOTIFY_METHOD_EMAIL} checked="checked" />{L_NOTIFY_METHOD_IM} checked="checked" />{L_NOTIFY_METHOD_BOTH} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_NOTIFY_ON_PM}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_POPUP_ON_PM}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_BOARD_LANGUAGE}: | @@ -73,7 +73,7 @@||||||||||||||||||||||||||||||||||||||||||||||||||||
{L_BOARD_DST}: | -checked="checked" /> {L_YES} checked="checked" /> {L_NO} | +checked="checked" /> {L_YES} checked="checked" /> {L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_BOARD_DATE_FORMAT}: {L_BOARD_DATE_FORMAT_EXPLAIN} |
diff --git a/phpBB/styles/subSilver/template/ucp_prefs_post.html b/phpBB/styles/subSilver/template/ucp_prefs_post.html
index 668954b5db..7ef608f379 100644
--- a/phpBB/styles/subSilver/template/ucp_prefs_post.html
+++ b/phpBB/styles/subSilver/template/ucp_prefs_post.html
@@ -11,19 +11,19 @@
||||||||||||||||||||||||||||||||||||||||||||||||||||
{L_DEFAULT_BBCODE}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_DEFAULT_SMILIES}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_DEFAULT_ADD_SIG}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_DEFAULT_NOTIFY}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{S_HIDDEN_FIELDS} | diff --git a/phpBB/styles/subSilver/template/ucp_prefs_view.html b/phpBB/styles/subSilver/template/ucp_prefs_view.html index d3495b5346..41b6cd88cd 100644 --- a/phpBB/styles/subSilver/template/ucp_prefs_view.html +++ b/phpBB/styles/subSilver/template/ucp_prefs_view.html @@ -11,28 +11,28 @@||||||||||||||||||||||||||||||||||||||||||||||||||||
{L_VIEW_IMAGES}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_VIEW_FLASH}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_VIEW_SMILIES}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_VIEW_SIGS}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_VIEW_AVATARS}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_DISABLE_CENSORS}: | -checked="checked" />{L_YES} checked="checked" />{L_NO} | +checked="checked" />{L_YES} checked="checked" />{L_NO} | ||||||||||||||||||||||||||||||||||||||||||||||||||
{L_CURRENT_IMAGE}: {L_AVATAR_EXPLAIN} |
- {AVATAR} ![]() {L_DELETE_AVATAR} |
+ {AVATAR} ![]() {L_DELETE_AVATAR} |
||||||||||||||||||||||||||||||||||||||||||||||||||
+ | ||||||||||||||||||||||||||||||||||||||||||||||||||||
{L_SIGNATURE}: {L_SIGNATURE_EXPLAIN} |
+ {L_SIGNATURE}: {L_SIGNATURE_EXPLAIN} |
|