Hallo zusammen,
ich habe heute morgen bei zwei Vereinswebseiten, die ich hobbymäßig betreue, das Update von Joomla 3.6.5 auf Joomla 3.7.0 Stable gemacht. Leider ist die eine Webseite (https://forum.joomla.de/www.segelclub-hattingen.de) nun voller Fehlermeldungen:
ZitatWarning: Cannot use a scalar value as an array in .../j3/libraries/cms/html/html.php on line 620
Warning: Cannot use a scalar value as an array in .../j3/libraries/cms/html/html.php on line 621
Warning: Cannot use a scalar value as an array in .../j3/libraries/cms/html/html.php on line 622
Warning: Cannot use a scalar value as an array in .../j3/libraries/cms/html/html.php on line 623
Bei den betroffenen Zeilen geht es um diesen Abschnitt (Zeile 620 = Zeile 20):
public static function stylesheet($file, $options = array(), $attribs = array())
{
// B/C before 3.7.0
if (!is_array($attribs))
{
JLog::add('The stylesheet method signature used has changed, use (file, options, attributes) instead.', JLog::WARNING, 'deprecated');
$argList = func_get_args();
$options = array();
// Old parameters.
$attribs = isset($argList[1]) ? $argList[1] : array();
$options['relative'] = isset($argList[2]) ? $argList[2] : false;
$options['pathOnly'] = isset($argList[3]) ? $argList[3] : false;
$options['detectBrowser'] = isset($argList[4]) ? $argList[4] : true;
$options['detectDebug'] = isset($argList[5]) ? $argList[5] : true;
}
else
{
$options['relative'] = isset($options['relative']) ? $options['relative'] : false;
$options['pathOnly'] = isset($options['pathOnly']) ? $options['pathOnly'] : false;
$options['detectBrowser'] = isset($options['detectBrowser']) ? $options['detectBrowser'] : true;
$options['detectDebug'] = isset($options['detectDebug']) ? $options['detectDebug'] : true;
}
Alles anzeigen
Ich finde da leider auch nicht wirklich Lösungsansätze bei Google. Hier scheint jemand ein ähnliches Problem zu haben, jedoch werde ich daraus nicht schlau:
https://github.com/joomla/joomla-cms/issues/15548
Meine Kenntnisse beschränken sich eher auf HTML und CSS, bei PHP hörts dann auf.. Ich würde mich sehr freuen, wenn ihr mir weiter helfen könntet.