[Koha-patches] [PATCH] Moving the text of an error message from the script to the template where it can be translated. Partial fix for bug 1153.

Owen Leonard oleonard at myacpl.org
Mon Jul 6 16:06:51 CEST 2009


---
 koha-tmpl/opac-tmpl/prog/en/modules/kohaerror.tmpl |   26 +++++++++++++++----
 opac/opac-userupdate.pl                            |    3 +-
 2 files changed, 21 insertions(+), 8 deletions(-)

diff --git a/koha-tmpl/opac-tmpl/prog/en/modules/kohaerror.tmpl b/koha-tmpl/opac-tmpl/prog/en/modules/kohaerror.tmpl
index 6a90fae..0fa7474 100644
--- a/koha-tmpl/opac-tmpl/prog/en/modules/kohaerror.tmpl
+++ b/koha-tmpl/opac-tmpl/prog/en/modules/kohaerror.tmpl
@@ -2,11 +2,25 @@
 <!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
 </head>
 <body>
-<!--TMPL_INCLUDE NAME="masthead.inc" -->
-<!--TMPL_INCLUDE NAME="navigation.inc" -->
+<div id="doc3" class="yui-t7">
+   <div id="bd">
+<!-- TMPL_INCLUDE name="masthead.inc" -->
 
+<div id="yui-g">
+<div class="container">
+<div id="kohaerror">
+<div class="dialog message">
+<h3>An Error has Occurred</h3>
+<!-- TMPL_IF NAME="noadminemail" -->
+<p>An error occurred when sending your message to the administrator. Please visit the library to update your personal details. </p>
+<p><a href="/cgi-bin/koha/opac-user.pl">Return to your summary.</a></p>
+<!-- TMPL_ELSE -->
+<p><!-- TMPL_VAR NAME="errormessage" --></p>
+<!-- /TMPL_IF -->
+</div>
+</div>
+</div>
+</div>
+</div>
 
-<div id="main">
-<h3>An Error has Occurred</h3><!-- TMPL_VAR NAME="errormessage" --></div>
-</body>
-</html>
\ No newline at end of file
+<!-- TMPL_INCLUDE NAME="opac-bottom.inc" -->
diff --git a/opac/opac-userupdate.pl b/opac/opac-userupdate.pl
index bbe02d7..43986b0 100755
--- a/opac/opac-userupdate.pl
+++ b/opac/opac-userupdate.pl
@@ -73,8 +73,7 @@ if ( $updateemailaddress eq '' ) {
     );
 
     $template->param(
-        errormessage => 'KohaAdminEmailAddress system preference
-    is not set.  Please visit the library to update your user record'
+        noadminemail => 1,
     );
 
     output_html_with_http_headers $query, $cookie, $template->output;
-- 
1.5.6.5




More information about the Koha-patches mailing list