From: Christian Weiske Date: Fri, 18 Sep 2015 19:59:35 +0000 (+0200) Subject: Fix #28: array_shift() E_NOTICE in owncloud.log X-Git-Tag: v0.6.0~3 X-Git-Url: https://git.cweiske.de/grauphel.git/commitdiff_plain/1a5b0cd1539c149d18db4e40f16c56654cace898 Fix #28: array_shift() E_NOTICE in owncloud.log --- diff --git a/lib/converter/html.php b/lib/converter/html.php index 29064e5..11cf105 100644 --- a/lib/converter/html.php +++ b/lib/converter/html.php @@ -107,7 +107,7 @@ class Html extends Base } break; case XMLReader::END_ELEMENT: - array_shift($nesting, $reader->name); + array_shift($nesting); if (isset(static::$tagMap[$reader->name])) { $store .= 'name] . '>'; } else if (isset(static::$styleClassMap[$reader->name])) {