Skip to content
Snippets Groups Projects
Commit 481343c2 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

our code may only throw user errors

parent 246ce059
No related branches found
No related tags found
No related merge requests found
...@@ -255,7 +255,7 @@ class DokuWiki_Plugin { ...@@ -255,7 +255,7 @@ class DokuWiki_Plugin {
if(!isset($arguments[1])) $arguments[1] = 'xhtml'; if(!isset($arguments[1])) $arguments[1] = 'xhtml';
return $this->render_text($arguments[0], $arguments[1]); return $this->render_text($arguments[0], $arguments[1]);
} }
trigger_error("no such method $name", E_ERROR); trigger_error("no such method $name", E_USER_ERROR);
return null; return null;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment