aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2015-09-18 21:59:35 +0200
committerChristian Weiske <cweiske@cweiske.de>2015-09-18 21:59:35 +0200
commit1a5b0cd1539c149d18db4e40f16c56654cace898 (patch)
treeff29b5feaa66a3d6c4f2a6bb46e50c5ddf8fb14a
parent729cf0b66d9ccaf381a2150f75fb57c1c98c3b4c (diff)
downloadgrauphel-1a5b0cd1539c149d18db4e40f16c56654cace898.tar.gz
grauphel-1a5b0cd1539c149d18db4e40f16c56654cace898.zip
Fix #28: array_shift() E_NOTICE in owncloud.log
-rw-r--r--lib/converter/html.php2
1 files changed, 1 insertions, 1 deletions
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 .= '</' . static::$tagMap[$reader->name] . '>';
} else if (isset(static::$styleClassMap[$reader->name])) {