diff options
Diffstat (limited to 'include/common.inc.php')
-rw-r--r-- | include/common.inc.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/common.inc.php b/include/common.inc.php index 005297d25..8aeafb7bf 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -208,6 +208,19 @@ include( .'/themeconf.inc.php' ); +if (is_adviser()) +{ + ob_start();// buffer output so that cookies work + echo ' + <div class="titrePage"> + <h2> + <div style="text-align:center;">'.$lang['adviser_mode_enabled'].' + </div> + </h2> + </div> + '; +} + // template instance $template = new Template(PHPWG_ROOT_PATH.'template/'.$user['template']); ?> |