From 481343c25e1c66a6bc789de47ea9f8e257b67be1 Mon Sep 17 00:00:00 2001
From: Andreas Gohr <gohr@cosmocode.de>
Date: Wed, 9 Apr 2014 10:27:52 +0200
Subject: [PATCH] our code may only throw user errors

---
 inc/plugin.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inc/plugin.php b/inc/plugin.php
index 95bdaee2b..7de4fbd74 100644
--- a/inc/plugin.php
+++ b/inc/plugin.php
@@ -255,7 +255,7 @@ class DokuWiki_Plugin {
             if(!isset($arguments[1])) $arguments[1] = 'xhtml';
             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;
     }
 
-- 
GitLab