From 01a58465578e6efac211bd626bf686502da56ee1 Mon Sep 17 00:00:00 2001 From: Savetheinternet Date: Sat, 25 Jun 2011 16:03:57 +1000 Subject: [PATCH] fixed but telling non-mods they have an unread PM sometimes --- inc/template.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/inc/template.php b/inc/template.php index 49e54f0f..0c4268d6 100644 --- a/inc/template.php +++ b/inc/template.php @@ -170,8 +170,11 @@ function Element($templateFile, array $options) { global $config, $debug; + //var_dump($options); + //exit; + // Small little hack to add the PM system - if(function_exists('create_pm_header') && (isset($options['mod']) || isset($options['__mod']))) { + if(function_exists('create_pm_header') && ((isset($options['mod']) && $options['mod']) || isset($options['__mod']))) { $options['pm'] = create_pm_header(); } @@ -192,4 +195,4 @@ } } -?> \ No newline at end of file +?>