diff options
-rw-r--r-- | Bugzilla/Template.pm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index d72feea67..663e467c6 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -876,6 +876,21 @@ sub create { # Function for retrieving global parameters. 'Param' => sub { return Bugzilla->params->{$_[0]}; }, + 'bugzilla_version' => sub { + my $version = Bugzilla->VERSION; + if (my @ver = $version =~ /^(\d{4})(\d{2})(\d{2})\.(\d+)$/s) { + if ($ver[3] eq '1') { + return join('.', @ver[0,1,2]); + } + else { + return join('.', @ver); + } + } + else { + return $version; + } + }, + asset_file => sub { return Bugzilla->asset_manager->asset_file($_[0]); }, |