You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My suggestion: Change every "&" character under "public function url ()" in Template.php to its HTML equivalent: & amp;
That solves the problem and doesn't break stuff. Howerver, the preg replace in: return $serverProtocol.preg_replace('&/{2,}&', '/', "$serverAddress/$url");
May be redefined.
The text was updated successfully, but these errors were encountered:
The W3C validator finds any "&" symbol as markup errors. Using just "&" in URLs is a bad practice as something like "©=3" can make the browser interpret it as "©=3".
My suggestion: Change every "&" character under "public function url ()" in Template.php to its HTML equivalent:
& amp;
That solves the problem and doesn't break stuff. Howerver, the preg replace in:
return $serverProtocol.preg_replace('&/{2,}&', '/', "$serverAddress/$url");
May be redefined.
The text was updated successfully, but these errors were encountered: