From cea1575495ba32f4eb2c96a424d974877614f7f9 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Tue, 27 Jun 2017 02:14:42 -0400 Subject: re-add bugzilla_version tt function --- Bugzilla/Template.pm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'Bugzilla/Template.pm') 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]); }, -- cgit v1.2.3-24-g4f1b