diff options
author | Michael Hamann <michael@content-space.de> | 2011-06-08 00:27:33 +0200 |
---|---|---|
committer | Michael Hamann <michael@content-space.de> | 2011-06-08 00:27:33 +0200 |
commit | 1c56be7bf617302cbe5a0541b492bae66c8a1b79 (patch) | |
tree | 457bbac9d68a0a09a9daa571864d62c4d4924d3e /inc | |
parent | d54ac87747635038aaaf9b4c7a2df7a8a0cd450d (diff) | |
download | rpg-1c56be7bf617302cbe5a0541b492bae66c8a1b79.tar.gz rpg-1c56be7bf617302cbe5a0541b492bae66c8a1b79.tar.bz2 |
Add missing return value to p_set_metadata
Diffstat (limited to 'inc')
-rw-r--r-- | inc/parserutils.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/parserutils.php b/inc/parserutils.php index abba89b5a..9ae835893 100644 --- a/inc/parserutils.php +++ b/inc/parserutils.php @@ -411,6 +411,7 @@ function p_set_metadata($id, $data, $render=false, $persistent=true){ // set both keys individually as the renderer has references to the individual keys $METADATA_RENDERERS[$id]['current'] = $meta['current']; $METADATA_RENDERERS[$id]['persistent'] = $meta['persistent']; + return true; } else { return p_save_metadata($id, $meta); } |