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/xhtml.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/xhtml.php')
-rw-r--r-- | inc/parser/xhtml.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index 184e62fe3..4966f103a 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -606,7 +606,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer { } //keep hash anchor - list($id,$hash) = explode('#',$id,2); + @list($id,$hash) = explode('#',$id,2); if(!empty($hash)) $hash = $this->_headerToLink($hash); //prepare for formating |