XenForo
Administrative
- Thread starter
- Admin
- #1
Problem:
When using the
Test Cases:
Suggested Fix:
Apply the following below
PHP:
Read more
ادامه مطلب...
When using the
XF\Validator\Url
class to validate URLs, entering a non-www URL does not correctly apply the schema.Test Cases:
https://google.com
works.www.google.com
works.google.com
does not, and asks to input a valid URL.Suggested Fix:
Apply the following below
else if (substr(strtolower($value), 0, 4) == 'www.')
PHP:
Code:
else
{
$scheme = parse_url($value, PHP_URL_SCHEME);
if ($scheme...
Read more
ادامه مطلب...