[Rt-commit] r10909 - rt/branches/3.6-RELEASE/html/Admin/Global
ruz at bestpractical.com
ruz at bestpractical.com
Thu Feb 21 15:35:43 EST 2008
Author: ruz
Date: Thu Feb 21 15:35:40 2008
New Revision: 10909
Modified:
rt/branches/3.6-RELEASE/html/Admin/Global/Template.html
Log:
* In Global template creation, header say "Modify" instead of "Create"
This patch for 3.6.6 fix this by reducing the differences between
Admin/Queues/Template.html and Admin/Global/Template.html to the minimum
required.
Thanks to Emmanuel Lacour
Modified: rt/branches/3.6-RELEASE/html/Admin/Global/Template.html
==============================================================================
--- rt/branches/3.6-RELEASE/html/Admin/Global/Template.html (original)
+++ rt/branches/3.6-RELEASE/html/Admin/Global/Template.html Thu Feb 21 15:35:40 2008
@@ -45,15 +45,14 @@
%# those contributions and any derivatives thereof.
%#
%# END BPS TAGGED BLOCK }}}
-<& /Admin/Elements/Header, Title => loc("Modify template [_1]", $TemplateObj->id) &>
+<& /Admin/Elements/Header, Title => $title &>
<& /Admin/Elements/SystemTabs,
current_tab => 'Admin/Global/Templates.html',
current_subtab => $current_subtab,
subtabs => $subtabs,
- Title => loc("Modify template [_1]", $TemplateObj->id) &>
+ Title => $title &>
<& /Elements/ListActions, actions => \@results &>
-
<form method="post" action="Template.html">
%if ($Create ) {
<input type="hidden" class="hidden" name="Template" value="new" />
@@ -63,14 +62,12 @@
%# hang onto the queue id
<input type="hidden" class="hidden" name="Queue" value="<%$Queue%>" />
-
-<& /Admin/Elements/ModifyTemplate, Name => $TemplateObj->Name, Description => $TemplateObj->Description, Content => $TemplateObj->Content &>
-
-<& /Elements/Submit, Label => loc('Save Changes'), Reset => 1 &>
+<& /Admin/Elements/ModifyTemplate, Name => $TemplateObj->Name, Description =>
+$TemplateObj->Description, Content => $TemplateObj->Content &>
+<& /Elements/Submit, Label => loc('Create'), Reset => 1 &>
</form>
-
<%INIT>
my $TemplateObj = new RT::Template($session{'CurrentUser'});
@@ -86,10 +83,9 @@
}
};
-
if ($Create) {
- $current_subtab = "Admin/Global/Template.html?Create=1&Queue=0";
$title = loc("Create a template");
+ $current_subtab = "Admin/Global/Template.html?Create=1&Queue=0";
}
else {
@@ -101,7 +97,7 @@
else {
$TemplateObj->Load($Template) || Abort(loc('No Template'));
}
- $title = loc('Modify template [_1]', loc($TemplateObj->Name()));
+ $title = loc('Modify template [_1]', loc($TemplateObj->Name()));
}
@@ -116,6 +112,7 @@
};
push @results, @aresults;
}
+
</%INIT>
<%ARGS>
$Queue => undef
More information about the Rt-commit
mailing list