diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2014-03-05 22:01:20 +0000 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2014-03-05 22:01:20 +0000 |
commit | 6d2af55dde922ac10a288b4195b1bf338e7bc5a9 (patch) | |
tree | f0bb51ad44608872afa3a9ab26acbff3629c9d90 /inc/parser/renderer.php | |
parent | 0e80bb5e347ff00c6f81627d8e39dafaaa923bc5 (diff) | |
download | rpg-6d2af55dde922ac10a288b4195b1bf338e7bc5a9.tar.gz rpg-6d2af55dde922ac10a288b4195b1bf338e7bc5a9.tar.bz2 |
suppress errors where list() may not fill all vars
Diffstat (limited to 'inc/parser/renderer.php')
-rw-r--r-- | inc/parser/renderer.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/inc/parser/renderer.php b/inc/parser/renderer.php index 1f9ad00a2..e748c36d8 100644 --- a/inc/parser/renderer.php +++ b/inc/parser/renderer.php @@ -274,8 +274,8 @@ class Doku_Renderer extends DokuWiki_Plugin { function _simpleTitle($name){ global $conf; - //if there is a hash we use the ancor name only - list($name,$hash) = explode('#',$name,2); + //if there is a hash we use the anchor name only + @list($name,$hash) = explode('#',$name,2); if($hash) return $hash; if($conf['useslash']){ @@ -301,7 +301,7 @@ class Doku_Renderer extends DokuWiki_Plugin { } //split into hash and url part - list($reference,$hash) = explode('#',$reference,2); + @list($reference,$hash) = explode('#',$reference,2); //replace placeholder if(preg_match('#\{(URL|NAME|SCHEME|HOST|PORT|PATH|QUERY)\}#',$url)){ |