mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-02 23:07:39 +02:00
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8510 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -91,6 +91,7 @@
|
|||||||
<li>[Fix] Moved topics should not count towards the number of topics in a forum (Bug #14648 / thanks to Schumi for his patch)</li>
|
<li>[Fix] Moved topics should not count towards the number of topics in a forum (Bug #14648 / thanks to Schumi for his patch)</li>
|
||||||
<li>[Fix] Properly check for invalid characters in MySQL DB prefixes during install (Bug #18775)</li>
|
<li>[Fix] Properly check for invalid characters in MySQL DB prefixes during install (Bug #18775)</li>
|
||||||
<li>[Change] Generalize load check (Bug #21255 / thanks to Xipher)</li>
|
<li>[Change] Generalize load check (Bug #21255 / thanks to Xipher)</li>
|
||||||
|
<li>[Change] Make utf8_htmlspecialchars not pass its argument by reference (Bug #21885)</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<a name="v300"></a><h3>1.ii. Changes since 3.0.0</h3>
|
<a name="v300"></a><h3>1.ii. Changes since 3.0.0</h3>
|
||||||
|
@@ -1840,7 +1840,7 @@ function utf8_clean_string($text)
|
|||||||
/**
|
/**
|
||||||
* A wrapper for htmlspecialchars($value, ENT_COMPAT, 'UTF-8')
|
* A wrapper for htmlspecialchars($value, ENT_COMPAT, 'UTF-8')
|
||||||
*/
|
*/
|
||||||
function utf8_htmlspecialchars(&$value)
|
function utf8_htmlspecialchars($value)
|
||||||
{
|
{
|
||||||
return htmlspecialchars($value, ENT_COMPAT, 'UTF-8');
|
return htmlspecialchars($value, ENT_COMPAT, 'UTF-8');
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user