diff options
Diffstat (limited to 'inc/infoutils.php')
-rw-r--r-- | inc/infoutils.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/inc/infoutils.php b/inc/infoutils.php index ab8bc8deb..3c7ba96a5 100644 --- a/inc/infoutils.php +++ b/inc/infoutils.php @@ -247,22 +247,3 @@ function dbglog($msg){ } } -/** - * Prints the metadata of a given page - * - * Only prints when debugging is allowed and the metadebug request - * parameter is set - * - * The data is dumped after tpl_action and thus after the template's - * closing html tag. This makes the HTML invalid, but this is for - * debugging only anyway. - * - * @author Andreas Gohr <andi@splitbrain.org> - */ -function debug_meta($id){ - global $conf; - if(!$conf['allowdebug']) return; - if(!$_REQUEST['metadebug']) return; - - dbg(p_get_metadata($id)); -} |