Skip to content

Commit b9c3e47

Browse files
authored
Fix - Ignored if default class is extended
1 parent e551e4b commit b9c3e47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

manager/includes/document.parser.class.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ final public function __clone()
213213
public static function getInstance()
214214
{
215215
if (self::$instance === null) {
216-
self::$instance = new DocumentParser();
216+
self::$instance = new static();
217217
}
218218
return self::$instance;
219219
}

0 commit comments

Comments
 (0)