X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Fcommon.pl;h=a6f7ef48c6ab49b9c07eecf0aba10cac1243a98b;hb=f49ad7f1f479daf79dd78d3ff0e0894c1e6c311c;hp=c889bc100e7d1d9ff87d083546aaf88e2d561d54;hpb=1ffb42006427be006df310be1e98aad5dd7b1a4d;p=kivitendo-erp.git diff --git a/bin/mozilla/common.pl b/bin/mozilla/common.pl index c889bc100..a6f7ef48c 100644 --- a/bin/mozilla/common.pl +++ b/bin/mozilla/common.pl @@ -14,6 +14,7 @@ use SL::Common; use SL::DBUtils; use SL::Form; use SL::MoreCommon; +use SL::Helper::Flash; use strict; @@ -727,24 +728,11 @@ sub gl_transaction { $main::lxdebug->leave_sub(); } -sub flash { - my $category = shift; - $category = 'info' if $category eq 'information'; - - $::form->{FLASH} ||= { }; - $::form->{FLASH}->{ $category } ||= [ ]; - push @{ $::form->{FLASH}->{ $category } }, @_; -} - -sub render_flash { - return $::form->parse_html_template('common/flash'); -} - if ($::use_rdbo) { eval { - require SL::DB::Helpers::Mappings; + require SL::DB::Helper::Mappings; sub db { - goto &SL::DB::Helpers::Mappings::db; + goto &SL::DB::Helper::Mappings::db; } } or die $@; }