X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/a9da5102a870336ee4d347117ca7a33eeaff64ea..b29878cbc8a4fa1e0959fca593a91242894315fd:/SL/User.pm diff --git a/SL/User.pm b/SL/User.pm index 45f5f553d..37e1a9b5f 100644 --- a/SL/User.pm +++ b/SL/User.pm @@ -133,6 +133,11 @@ sub login { return LOGIN_OK(); } + # Store the fact that we're applying database upgrades at the + # moment. That way functions called from the layout modules that may + # require updated tables can chose only to use basic features. + $::request->applying_database_upgrades(1); + $form->{$_} = $::auth->client->{$_} for qw(dbname dbhost dbport dbuser dbpasswd); $form->{$_} = $myconfig{$_} for qw(datestyle); @@ -449,7 +454,7 @@ sub get_default_myconfig { css_path => 'css', # Needed for menunew, see SL::Layout::Base::get_stylesheet_for_user dateformat => $defaults->dateformat('dd.mm.yy'), numberformat => $defaults->numberformat('1.000,00'), - stylesheet => 'kivitendo.css', + stylesheet => $defaults->stylesheet('kivitendo.css'), timeformat => $defaults->timeformat('hh:mm'), %user_config, );