Felder end_date, terminated, extend_automatically_by ergänzt
[kivitendo-erp.git] / bin / mozilla / common.pl
index d98bdda..a6f7ef4 100644 (file)
@@ -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 $@;
 }