summaryrefslogtreecommitdiff
path: root/inc/parser/metadata.php
diff options
context:
space:
mode:
authorChristopher Smith <chris@jalakai.co.uk>2014-03-05 22:01:20 +0000
committerChristopher Smith <chris@jalakai.co.uk>2014-03-05 22:01:20 +0000
commit6d2af55dde922ac10a288b4195b1bf338e7bc5a9 (patch)
treef0bb51ad44608872afa3a9ab26acbff3629c9d90 /inc/parser/metadata.php
parent0e80bb5e347ff00c6f81627d8e39dafaaa923bc5 (diff)
downloadrpg-6d2af55dde922ac10a288b4195b1bf338e7bc5a9.tar.gz
rpg-6d2af55dde922ac10a288b4195b1bf338e7bc5a9.tar.bz2
suppress errors where list() may not fill all vars
Diffstat (limited to 'inc/parser/metadata.php')
-rw-r--r--inc/parser/metadata.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/metadata.php b/inc/parser/metadata.php
index 73bae190f..82a268fd6 100644
--- a/inc/parser/metadata.php
+++ b/inc/parser/metadata.php
@@ -299,7 +299,7 @@ class Doku_Renderer_metadata extends Doku_Renderer {
// first resolve and clean up the $id
resolve_pageid(getNS($ID), $id, $exists);
- list($page, $hash) = explode('#', $id, 2);
+ @list($page, $hash) = explode('#', $id, 2);
// set metadata
$this->meta['relation']['references'][$page] = $exists;