openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 98ffe747016fa762c206e09d45ca82e1d739c580
parent 0178b6d28b61b702691362d8b39a53ad869c9452
Author: dankert <devnull@localhost>
Date:   Wed, 24 Oct 2007 23:06:26 +0200

Fehlermeldung vermeiden, wenn Konfigurationsangaben nicht gefunden werden.

Diffstat:
themes/default/include/html/window.inc.php | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/themes/default/include/html/window.inc.php b/themes/default/include/html/window.inc.php @@ -61,9 +61,9 @@ ?><span class="menu_disabled" title="<?php echo lang($menu['text'].'_DESC') ?>" class="menu_disabled"><?php echo $tmp_text ?></span>&nbsp;&nbsp;&nbsp;<?php } } - if ($conf['help']['enabled'] ) + if (@$conf['help']['enabled'] ) { - ?><a href="<?php echo $conf['help']['url'].$actionName.'/'.$subActionName.$conf['help']['suffix'] ?> " target="_new" title="<?php echo lang('MENU_HELP_DESC') ?>" class="menu" style="cursor:help;"><?php echo $conf['help']['only_question_mark']?'?':lang('MENU_HELP') ?></a><?php + ?><a href="<?php echo $conf['help']['url'].$actionName.'/'.$subActionName.@$conf['help']['suffix'] ?> " target="_new" title="<?php echo lang('MENU_HELP_DESC') ?>" class="menu" style="cursor:help;"><?php echo @$conf['help']['only_question_mark']?'?':lang('MENU_HELP') ?></a><?php } ?></td> </tr>