?
avatar fluctuate
fluctuate
18 Sep 2017

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;
}

avatar fluctuate fluctuate - open - 18 Sep 2017
avatar joomla-cms-bot joomla-cms-bot - change - 18 Sep 2017
Labels Added: ?
avatar joomla-cms-bot joomla-cms-bot - labeled - 18 Sep 2017
avatar fluctuate fluctuate - change - 18 Sep 2017
Status New Closed
Closed_Date 0000-00-00 00:00:00 2017-09-18 16:55:54
Closed_By fluctuate
avatar fluctuate fluctuate - close - 18 Sep 2017

Add a Comment

Login with GitHub to post a comment