From 1e07f6c34abd1924dd6c49eafb5d8ddf395657e8 Mon Sep 17 00:00:00 2001 From: Hector Castro Date: Mon, 23 Nov 2015 10:43:14 -0600 Subject: [PATCH] Bug 15232: (follow-up) Advanced Cataloging Editor: Fix translation issues Change JS 'h3' for

--- koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc index c0bb4dc..cc8817d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc @@ -559,7 +559,7 @@ require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr invalidateSearchResults(); Search.Reconnect(); } else { - humanMsg.displayMsg( 'h3' + _("Internal search error") + '

' + error + '

' + _("Please refresh the page and try again.") + '

', { className: 'humanError' } ); + humanMsg.displayMsg( '

' + _("Internal search error") + '

' + error + '

' + _("Please refresh the page and try again.") + '

', { className: 'humanError' } ); } } @@ -948,7 +948,7 @@ require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr errors.push(error); } ); - humanMsg.displayMsg( 'h3' + _("Failed to run macro:") + '', { className: 'humanError' } ); + humanMsg.displayMsg( '

' + _("Failed to run macro:") + '

', { className: 'humanError' } ); return false; } ); -- 1.7.10.4