summaryrefslogtreecommitdiff
path: root/inc/parser/renderer.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2014-03-08 15:51:47 +0100
committerAndreas Gohr <andi@splitbrain.org>2014-03-08 15:51:47 +0100
commitd27c0c1701c342ed9d6553163a71ac5cd7314a9f (patch)
treef565a5dd36cceba6abd63a74941caa719e749c5d /inc/parser/renderer.php
parent9b50ec5c405ff215dd0d67491752f3c56ce7749e (diff)
parent49f299d6a332f8755f3b7a20c414702cca9c5ab8 (diff)
downloadrpg-d27c0c1701c342ed9d6553163a71ac5cd7314a9f.tar.gz
rpg-d27c0c1701c342ed9d6553163a71ac5cd7314a9f.tar.bz2
Merge pull request #588 from splitbrain/purge_E_ALL
Purge error log messages to support use of E_ALL
Diffstat (limited to 'inc/parser/renderer.php')
-rw-r--r--inc/parser/renderer.php6
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)){