From 1a5b0cd1539c149d18db4e40f16c56654cace898 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Fri, 18 Sep 2015 21:59:35 +0200 Subject: [PATCH] Fix #28: array_shift() E_NOTICE in owncloud.log --- lib/converter/html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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])) { -- 2.30.2