X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/fd574abba34aa0c58882ec32ebadb13551d9e77b..42ea98b4:/bin/mozilla/common.pl?ds=sidebyside diff --git a/bin/mozilla/common.pl b/bin/mozilla/common.pl index b86ce78a1..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; @@ -183,7 +184,7 @@ sub part_selection_internal { my @header_sort = qw(partnumber description); my %header_title = ( "partnumber" => $locale->text("Part Number"), - "description" => $locale->text("Part description"), + "description" => $locale->text("Part Description"), ); my @header = @@ -727,4 +728,13 @@ sub gl_transaction { $main::lxdebug->leave_sub(); } +if ($::use_rdbo) { + eval { + require SL::DB::Helper::Mappings; + sub db { + goto &SL::DB::Helper::Mappings::db; + } + } or die $@; +} + 1;