mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-11 19:24:01 +02:00
- finally correctly calculate current time for birthday calculation [Bug #6030]
- allow searching forums with unsearchable subforums [Bug #6056] - addition of an optional HTTP_X_FORWARDED_FOR check in sessions, including bans - do not index forums which have indexing disabled on index recreation [Bug #6060] - properly handle html entities in the theme editor [Bug #6048] - anonymous access is no longer required for the LDAP auth plugin [Bug #6046] - corrected mcp_front queue link to point to approve_details [Bug #6134] - added direct (dis)approval to mcp_front queue items [Bug #6134] - proper mysql version test for fulltext-compatibility [Bug #6054] - added note to style/language "used by" column so it's clear that bots are included - correctly update bot last visit time [Bug #6108] git-svn-id: file:///svn/phpbb/trunk@6740 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -1121,7 +1121,7 @@ pagination_sep = \'{PAGINATION_SEP}\'
|
||||
$s_units = '<option value=""' . (($unit == '') ? ' selected="selected"' : '') . '>' . $user->lang['NO_UNIT'] . '</option>' . $s_units;
|
||||
|
||||
$template->assign_vars(array(
|
||||
strtoupper($var) => $value,
|
||||
strtoupper($var) => htmlspecialchars($value),
|
||||
'S_' . strtoupper($var) . '_UNITS' => $s_units)
|
||||
);
|
||||
break;
|
||||
@@ -1162,7 +1162,7 @@ pagination_sep = \'{PAGINATION_SEP}\'
|
||||
|
||||
default:
|
||||
$template->assign_vars(array(
|
||||
strtoupper($var) => $value)
|
||||
strtoupper($var) => htmlspecialchars($value))
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1226,7 +1226,7 @@ pagination_sep = \'{PAGINATION_SEP}\'
|
||||
break;
|
||||
|
||||
default:
|
||||
$value = request_var($var, '');
|
||||
$value = htmlspecialchars_decode(request_var($var, ''));
|
||||
}
|
||||
|
||||
// use the element mapping to create raw css code
|
||||
|
Reference in New Issue
Block a user