X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/540c0b5e9a38158e6f7a6efacd20b2477efad7ac..4bed72f:/bin/mozilla/login.pl diff --git a/bin/mozilla/login.pl b/bin/mozilla/login.pl index e79b6af5f..caf49c44e 100644 --- a/bin/mozilla/login.pl +++ b/bin/mozilla/login.pl @@ -31,6 +31,7 @@ use DBI; use SL::Auth; use SL::User; use SL::Form; +use SL::Git; require "bin/mozilla/common.pl"; require "bin/mozilla/todo.pl"; @@ -51,6 +52,9 @@ sub company_logo { $form->{title} = $::locale->text('kivitendo'); $form->{interface} = $::dispatcher->interface_type; + my $git = SL::Git->new; + ($form->{git_head}) = $git->get_log(since => 'HEAD~1', until => 'HEAD') if $git->is_git_installation; + # create the logo screen $form->header() unless $form->{noheader};