From 9b1a7fdefd59d2f0d812646538712460fc6c0a8c Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Wed, 23 Jul 2014 13:08:36 -0400 Subject: [PATCH] Bug 12639 - Z39.50 administration page should use "message" dialog for adds and updates Content-Type: text/plain; charset="utf-8" This patch changes the style of a couple of message boxes to use the "message" style instead of the "alert" style. This better reflects the type and priority of the messages being displayed. To test, got to Administration -> Z39.50 client targets and edit an existing server. The confirmation message should be the blue "message" type. Test again by adding a new server. The confirmation message for this operation should be of the same blue "message" type. --- .../prog/en/modules/admin/z3950servers.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt index 65e3db2..c43e6eb 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/z3950servers.tt @@ -73,9 +73,9 @@ [% IF msg_deleted %]
Z39.50 server deleted ([% msg_add %])
[% ELSIF msg_updated %] -
Z39.50 server updated ([% msg_add %])
+
Z39.50 server updated ([% msg_add %])
[% ELSIF msg_added %] -
Z39.50 server added ([% msg_add %])
+
Z39.50 server added ([% msg_add %])
[% ELSIF msg_notfound %]
Error: Server with id [% msg_add %] not found
[% END %] -- 1.7.9.5