I propose this simple fix.
web.php, Line 520
NOW
// We just need the prefix since we have a path relative to the root.
if ($url[0] == '/')
{
$url = $prefix . $url;
}
AFTER
// We just need the prefix since we have a path relative to the root.
if( isset($url[0]) && ($url[0] == '/') )
{
$url = $prefix . $url;
}
Labels |
Added:
?
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2017-09-18 16:55:54 |
Closed_By | ⇒ | fluctuate |