X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=SL%2FController%2FBase.pm;h=64ac328bd6098aabfa774a888ebe80f115b45744;hb=b2930e37cd4bfd276be6c785e1cd7fff0f503aef;hp=6d879e82ad2507447639e154d194842a48f245ac;hpb=ed4a9af1e86b98c870cfc0d16573bd59496bc7ba;p=kivitendo-erp.git diff --git a/SL/Controller/Base.pm b/SL/Controller/Base.pm index 6d879e82a..64ac328bd 100644 --- a/SL/Controller/Base.pm +++ b/SL/Controller/Base.pm @@ -84,7 +84,7 @@ sub render { } else { $::form->{title} = $locals{title} if $locals{title}; - $::form->header; + $::form->header(no_menu => $options->{no_menu}); } } @@ -229,7 +229,7 @@ sub _dispatch { $self->$sub(@_); $self->_run_hooks('after', $action); } else { - $::form->error($::locale->text('Oops. No valid action found to dispatch. Please report this case to the Lx-Office team.')); + $::form->error($::locale->text('Oops. No valid action found to dispatch. Please report this case to the kivitendo team.')); } } @@ -410,7 +410,7 @@ The template itself has access to the following variables: =item * C -- C<$::locale> -=item * C -- all parameters from C +=item * C -- all parameters from C with the same name they appear in the file (first level is the section, second the actual variable, e.g. C, C etc)