X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/56ed2f996f12a25e412a2a4874ff1f60297de5d4..87eebe6:/bin/mozilla/admin.pl?ds=sidebyside diff --git a/bin/mozilla/admin.pl b/bin/mozilla/admin.pl index 7e12b0e05..84c8b0699 100755 --- a/bin/mozilla/admin.pl +++ b/bin/mozilla/admin.pl @@ -98,7 +98,7 @@ sub run { if ($form->{action}) { if ($auth->authenticate_root($form->{'{AUTH}admin_password'}) != $auth->OK()) { $auth->punish_wrong_login; - $form->{error_message} = $locale->text('Incorrect Password!'); + $form->{error} = $locale->text('Incorrect Password!'); $auth->delete_session_value('admin_password'); adminlogin(); } else { @@ -759,7 +759,7 @@ sub create_dataset { if ($cluster_encoding && ($cluster_encoding =~ m/^(?:UTF-?8|UNICODE)$/i)) { if ($::lx_office_conf{system}->{dbcharset} !~ m/^UTF-?8$/i) { $form->show_generic_error($locale->text('The selected PostgreSQL installation uses UTF-8 as its encoding. ' . - 'Therefore you have to configure Lx-Office to use UTF-8 as well.'), + 'Therefore you have to configure kivitendo to use UTF-8 as well.'), 'back_button' => 1); } @@ -780,6 +780,7 @@ sub dbcreate { my $locale = $main::locale; $form->isblank("db", $locale->text('Dataset missing!')); + $form->isblank("defaultcurrency", $locale->text('Default currency missing!')); User->dbcreate(\%$form); @@ -1178,7 +1179,7 @@ sub _search_templates { -d ($::lx_office_conf{paths}->{templates} . "/$_") && !/^\.\.?$/ && !m/\.(?:html|tex|sty|odt|xml|txb)$/ - && !m/^(?:webpages$|print$|\.)/ + && !m/^(?:webpages$|print$|mail$|\.)/ } keys %dir_h; tie %dir_h, 'IO::Dir', "$::lx_office_conf{paths}->{templates}/print";