mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
git-svn-id: file:///svn/phpbb/trunk@7882 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -225,6 +225,7 @@ p a {
|
||||
<li>[Fix] Although theoretically impossible in our code, changed the handling of non-existent language files (Bug #13329, #13331)</li>
|
||||
<li>[Fix] Removed extra ampersand from ACP link (Bug #13315)</li>
|
||||
<li>[Fix] used cleaned up version of given field identification for pre-filling a new custom profile field (Bug #13319)</li>
|
||||
<li>[Fix] Correctly convert 2.0 website profile fields. (Bug #13379)</li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
@@ -224,13 +224,15 @@ function make_uid($timestamp)
|
||||
*/
|
||||
function validate_website($url)
|
||||
{
|
||||
if ($url === 'http://'){
|
||||
if ($url === 'http://')
|
||||
{
|
||||
return '';
|
||||
}
|
||||
else if (strpos(strtolower($url), 'http://') !== 0)
|
||||
{
|
||||
return 'http://' . $url;
|
||||
}
|
||||
return $url;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user