diff --git a/inc/database.php b/inc/database.php index 3dea39cb..792eae58 100644 --- a/inc/database.php +++ b/inc/database.php @@ -36,14 +36,20 @@ } function prepare($query) { - global $pdo; + global $pdo, $debug, $config; + if($config['debug']) { + $debug['sql'][] = $query; + } sql_open(); return $pdo->prepare($query); } function query($query) { - global $pdo; + global $pdo, $debug, $config; + if($config['debug']) { + $debug['sql'][] = $query; + } sql_open(); return $pdo->query($query); diff --git a/inc/template.php b/inc/template.php index e966a057..f9d59c2a 100644 --- a/inc/template.php +++ b/inc/template.php @@ -168,13 +168,17 @@ } function Element($templateFile, array $options) { - global $config; + global $config, $debug; // Small little hack to add the PM system - if(function_exists('create_pm_header') && (@$options['mod'] || @$options['__mod'])) { + if(function_exists('create_pm_header') && (isset($options['mod']) || isset($options['__mod']))) { $options['pm'] = create_pm_header(); } + if(isset($options['body']) && $config['debug']) { + $options['body'] .= '

Debug

' . print_r($debug, true) . '

'; + } + // Read the template file if($template = @file_get_contents("{$config['dir']['template']}/${templateFile}")) { return templateParse($template, $options, null, $templateFile);