[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/koha-tmpl errors/400.pl errors/401.pl erro...
From: |
Antoine Farnault |
Subject: |
[Koha-cvs] koha/koha-tmpl errors/400.pl errors/401.pl erro... |
Date: |
Fri, 13 Jul 2007 16:01:33 +0000 |
CVSROOT: /sources/koha
Module name: koha
Changes by: Antoine Farnault <toins> 07/07/13 16:01:33
Modified files:
koha-tmpl/errors: 400.pl 401.pl 402.pl 403.pl 404.pl 500.pl
koha-tmpl/intranet-tmpl/prog/en/errors: 400.tmpl 401.tmpl
402.tmpl 403.tmpl
404.tmpl 405.tmpl
500.tmpl
Log message:
GPL added + tmpl display fix.
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/errors/400.pl?cvsroot=koha&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/errors/401.pl?cvsroot=koha&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/errors/402.pl?cvsroot=koha&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/errors/403.pl?cvsroot=koha&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/errors/404.pl?cvsroot=koha&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/errors/500.pl?cvsroot=koha&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/400.tmpl?cvsroot=koha&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/401.tmpl?cvsroot=koha&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/402.tmpl?cvsroot=koha&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/403.tmpl?cvsroot=koha&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/404.tmpl?cvsroot=koha&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/405.tmpl?cvsroot=koha&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/koha/koha-tmpl/intranet-tmpl/prog/en/errors/500.tmpl?cvsroot=koha&r1=1.4&r2=1.5
Patches:
Index: errors/400.pl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/errors/400.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- errors/400.pl 5 Jun 2007 08:54:18 -0000 1.4
+++ errors/400.pl 13 Jul 2007 16:01:32 -0000 1.5
@@ -1,20 +1,38 @@
#!/usr/bin/perl
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307 USA
+
+# $Id: 400.pl,v 1.5 2007/07/13 16:01:32 toins Exp $
+
use strict;
use CGI;
use C4::Auth;
use C4::Output;
use C4::Context;
-
my $query = new CGI;
my $admin = C4::Context->preference('KohaAdminEmailAddress');
-my ($template, $loggedinuser, $cookie)
-= get_template_and_user({template_name => "errors/400.tmpl",
+my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
+ {
+ template_name => "errors/400.tmpl",
query => $query,
type => "intranet",
authnotrequired => 1,
debug => 1,
- });
-$template->param( admin => $admin);
+ }
+);
+$template->param( admin => $admin );
output_html_with_http_headers $query, $cookie, $template->output;
Index: errors/401.pl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/errors/401.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- errors/401.pl 5 Jun 2007 08:54:18 -0000 1.4
+++ errors/401.pl 13 Jul 2007 16:01:32 -0000 1.5
@@ -1,20 +1,38 @@
#!/usr/bin/perl
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307 USA
+
+# $Id: 401.pl,v 1.5 2007/07/13 16:01:32 toins Exp $
+
use strict;
use CGI;
use C4::Auth;
use C4::Output;
use C4::Context;
-
my $query = new CGI;
my $admin = C4::Context->preference('KohaAdminEmailAddress');
-my ($template, $loggedinuser, $cookie)
-= get_template_and_user({template_name => "errors/401.tmpl",
+my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
+ {
+ template_name => "errors/401.tmpl",
query => $query,
type => "intranet",
authnotrequired => 1,
debug => 1,
- });
-$template->param( admin => $admin);
+ }
+);
+$template->param( admin => $admin );
output_html_with_http_headers $query, $cookie, $template->output;
Index: errors/402.pl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/errors/402.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- errors/402.pl 5 Jun 2007 08:54:18 -0000 1.4
+++ errors/402.pl 13 Jul 2007 16:01:32 -0000 1.5
@@ -1,20 +1,38 @@
#!/usr/bin/perl
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307 USA
+
+# $Id: 402.pl,v 1.5 2007/07/13 16:01:32 toins Exp $
+
use strict;
use CGI;
use C4::Auth;
use C4::Output;
use C4::Context;
-
my $query = new CGI;
my $admin = C4::Context->preference('KohaAdminEmailAddress');
-my ($template, $loggedinuser, $cookie)
-= get_template_and_user({template_name => "errors/402.tmpl",
+my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
+ {
+ template_name => "errors/402.tmpl",
query => $query,
type => "intranet",
authnotrequired => 1,
debug => 1,
- });
-$template->param( admin => $admin);
+ }
+);
+$template->param( admin => $admin );
output_html_with_http_headers $query, $cookie, $template->output;
Index: errors/403.pl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/errors/403.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- errors/403.pl 5 Jun 2007 08:54:18 -0000 1.4
+++ errors/403.pl 13 Jul 2007 16:01:32 -0000 1.5
@@ -1,20 +1,38 @@
#!/usr/bin/perl
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307 USA
+
+# $Id: 403.pl,v 1.5 2007/07/13 16:01:32 toins Exp $
+
use strict;
use CGI;
use C4::Auth;
use C4::Output;
use C4::Context;
-
my $query = new CGI;
my $admin = C4::Context->preference('KohaAdminEmailAddress');
-my ($template, $loggedinuser, $cookie)
-= get_template_and_user({template_name => "errors/403.tmpl",
+my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
+ {
+ template_name => "errors/403.tmpl",
query => $query,
type => "intranet",
authnotrequired => 1,
debug => 1,
- });
-$template->param( admin => $admin);
+ }
+);
+$template->param( admin => $admin );
output_html_with_http_headers $query, $cookie, $template->output;
Index: errors/404.pl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/errors/404.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- errors/404.pl 5 Jun 2007 08:54:18 -0000 1.4
+++ errors/404.pl 13 Jul 2007 16:01:32 -0000 1.5
@@ -1,20 +1,38 @@
#!/usr/bin/perl
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307 USA
+
+# $Id: 404.pl,v 1.5 2007/07/13 16:01:32 toins Exp $
+
use strict;
use CGI;
use C4::Auth;
use C4::Output;
use C4::Context;
-
my $query = new CGI;
my $admin = C4::Context->preference('KohaAdminEmailAddress');
-my ($template, $loggedinuser, $cookie)
-= get_template_and_user({template_name => "errors/404.tmpl",
+my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
+ {
+ template_name => "errors/404.tmpl",
query => $query,
type => "intranet",
authnotrequired => 1,
debug => 1,
- });
-$template->param( admin => $admin);
+ }
+);
+$template->param( admin => $admin );
output_html_with_http_headers $query, $cookie, $template->output;
Index: errors/500.pl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/errors/500.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- errors/500.pl 5 Jun 2007 08:54:18 -0000 1.4
+++ errors/500.pl 13 Jul 2007 16:01:32 -0000 1.5
@@ -1,20 +1,38 @@
#!/usr/bin/perl
+# This file is part of Koha.
+#
+# Koha is free software; you can redistribute it and/or modify it under the
+# terms of the GNU General Public License as published by the Free Software
+# Foundation; either version 2 of the License, or (at your option) any later
+# version.
+#
+# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
+# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+# A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307 USA
+
+# $Id: 500.pl,v 1.5 2007/07/13 16:01:32 toins Exp $
+
use strict;
use CGI;
use C4::Auth;
use C4::Output;
use C4::Context;
-
my $query = new CGI;
my $admin = C4::Context->preference('KohaAdminEmailAddress');
-my ($template, $loggedinuser, $cookie)
-= get_template_and_user({template_name => "errors/500.tmpl",
+my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
+ {
+ template_name => "errors/500.tmpl",
query => $query,
type => "intranet",
authnotrequired => 1,
debug => 1,
- });
-$template->param( admin => $admin);
+ }
+);
+$template->param( admin => $admin );
output_html_with_http_headers $query, $cookie, $template->output;
Index: intranet-tmpl/prog/en/errors/400.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/errors/400.tmpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- intranet-tmpl/prog/en/errors/400.tmpl 11 Mar 2007 21:08:12 -0000
1.3
+++ intranet-tmpl/prog/en/errors/400.tmpl 13 Jul 2007 16:01:33 -0000
1.4
@@ -4,16 +4,15 @@
<!-- TMPL_INCLUDE NAME="menus.inc" -->
-<div id="mainbloc">
-<h1>An Error has Occurred!</h1>
-<h2>Error 404</h2>
<div id="main">
-<ul>
-<li>This error means that the link was broken and that the page doesn't
exist</li>
-<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin"
-->">email the Koha Administrator</a>.</li>
-<li>Use top menu bar to navigate to another part of Koha.</li>
-</ul>
-</div>
+ <h1>An Error has Occurred!</h1>
+ <h2>Error 400</h2>
+ <ul>
+ <li>This error means that the link was broken and that the page doesn't
exist</li>
+ <li>To report this error, you can <a href="mailto:<!-- TMPL_VAR
NAME="admin" -->">email the Koha Administrator</a>.</li>
+ <li>Use top menu bar to navigate to another part of Koha.</li>
+ </ul>
</div>
+
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
Index: intranet-tmpl/prog/en/errors/401.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/errors/401.tmpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- intranet-tmpl/prog/en/errors/401.tmpl 11 Mar 2007 21:08:12 -0000
1.3
+++ intranet-tmpl/prog/en/errors/401.tmpl 13 Jul 2007 16:01:33 -0000
1.4
@@ -4,16 +4,15 @@
<!-- TMPL_INCLUDE NAME="menus.inc" -->
-<div id="mainbloc">
-<h1>An Error has Occurred!</h1>
-<h2>Error 401</h2>
<div id="main">
-<ul>
-<li>This error means that you aren't authorized to view this page</li>
-<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin"
-->">email the Koha Administrator</a>.</li>
-<li>Use top menu bar to navigate to another part of Koha.</li>
-</ul>
-</div>
+ <h1>An Error has Occurred!</h1>
+ <h2>Error 401</h2>
+ <ul>
+ <li>This error means that you aren't authorized to view this page</li>
+ <li>To report this error, you can <a href="mailto:<!-- TMPL_VAR
NAME="admin" -->">email the Koha Administrator</a>.</li>
+ <li>Use top menu bar to navigate to another part of Koha.</li>
+ </ul>
</div>
+
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
Index: intranet-tmpl/prog/en/errors/402.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/errors/402.tmpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- intranet-tmpl/prog/en/errors/402.tmpl 11 Mar 2007 21:08:12 -0000
1.3
+++ intranet-tmpl/prog/en/errors/402.tmpl 13 Jul 2007 16:01:33 -0000
1.4
@@ -4,16 +4,15 @@
<!-- TMPL_INCLUDE NAME="menus.inc" -->
-<div id="mainbloc">
-<h1>An Error has Occurred!</h1>
-<h2>Error 404</h2>
<div id="main">
-<ul>
-<li>This error means that the link was broken and that the page doesn't
exist</li>
-<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin"
-->">email the Koha Administrator</a>.</li>
-<li>Use top menu bar to navigate to another part of Koha.</li>
-</ul>
-</div>
+ <h1>An Error has Occurred!</h1>
+ <h2>Error 402</h2>
+ <ul>
+ <li>This error means that the link was broken and that the page
doesn't exist</li>
+ <li>To report this error, you can <a href="mailto:<!-- TMPL_VAR
NAME="admin" -->">email the Koha Administrator</a>.</li>
+ <li>Use top menu bar to navigate to another part of Koha.</li>
+ </ul>
</div>
+
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
Index: intranet-tmpl/prog/en/errors/403.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/errors/403.tmpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- intranet-tmpl/prog/en/errors/403.tmpl 11 Mar 2007 21:08:12 -0000
1.3
+++ intranet-tmpl/prog/en/errors/403.tmpl 13 Jul 2007 16:01:33 -0000
1.4
@@ -4,16 +4,15 @@
<!-- TMPL_INCLUDE NAME="menus.inc" -->
-<div id="mainbloc">
-<h1>An Error has Occurred!</h1>
-<h2>Error 404</h2>
<div id="main">
-<ul>
-<li>This error means that the link was broken and that the page doesn't
exist</li>
-<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin"
-->">email the Koha Administrator</a>.</li>
-<li>Use top menu bar to navigate to another part of Koha.</li>
-</ul>
-</div>
+ <h1>An Error has Occurred!</h1>
+ <h2>Error 403</h2>
+ <ul>
+ <li>This error means that the link was broken and that the page doesn't
exist</li>
+ <li>To report this error, you can <a href="mailto:<!-- TMPL_VAR
NAME="admin" -->">email the Koha Administrator</a>.</li>
+ <li>Use top menu bar to navigate to another part of Koha.</li>
+ </ul>
</div>
+
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
Index: intranet-tmpl/prog/en/errors/404.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/errors/404.tmpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- intranet-tmpl/prog/en/errors/404.tmpl 11 Mar 2007 21:08:12 -0000
1.3
+++ intranet-tmpl/prog/en/errors/404.tmpl 13 Jul 2007 16:01:33 -0000
1.4
@@ -4,16 +4,15 @@
<!-- TMPL_INCLUDE NAME="menus.inc" -->
-<div id="mainbloc">
-<h1>An Error has Occurred!</h1>
-<h2>Error 404</h2>
<div id="main">
-<ul>
-<li>This error means that the link was broken and that the page doesn't
exist</li>
-<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin"
-->">email the Koha Administrator</a>.</li>
-<li>Use top menu bar to navigate to another part of Koha.</li>
-</ul>
-</div>
+ <h1>An Error has Occurred!</h1>
+ <h2>Error 404</h2>
+ <ul>
+ <li>This error means that the link was broken and that the page
doesn't exist</li>
+ <li>To report this error, you can <a href="mailto:<!-- TMPL_VAR
NAME="admin" -->">email the Koha Administrator</a>.</li>
+ <li>Use top menu bar to navigate to another part of Koha.</li>
+ </ul>
</div>
+
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
Index: intranet-tmpl/prog/en/errors/405.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/errors/405.tmpl,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- intranet-tmpl/prog/en/errors/405.tmpl 11 Mar 2007 21:08:12 -0000
1.3
+++ intranet-tmpl/prog/en/errors/405.tmpl 13 Jul 2007 16:01:33 -0000
1.4
@@ -4,16 +4,15 @@
<!-- TMPL_INCLUDE NAME="menus.inc" -->
-<div id="mainbloc">
-<h1>An Error has Occurred!</h1>
-<h2>Error 404</h2>
<div id="main">
-<ul>
-<li>This error means that the link was broken and that the page doesn't
exist</li>
-<li>To report this error, you can <a href="mailto:<!-- TMPL_VAR NAME="admin"
-->">email the Koha Administrator</a>.</li>
-<li>Use top menu bar to navigate to another part of Koha.</li>
-</ul>
-</div>
+ <h1>An Error has Occurred!</h1>
+ <h2>Error 405</h2>
+ <ul>
+ <li>This error means that the link was broken and that the page
doesn't exist</li>
+ <li>To report this error, you can <a href="mailto:<!-- TMPL_VAR
NAME="admin" -->">email the Koha Administrator</a>.</li>
+ <li>Use top menu bar to navigate to another part of Koha.</li>
+ </ul>
</div>
+
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
Index: intranet-tmpl/prog/en/errors/500.tmpl
===================================================================
RCS file: /sources/koha/koha/koha-tmpl/intranet-tmpl/prog/en/errors/500.tmpl,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- intranet-tmpl/prog/en/errors/500.tmpl 12 Mar 2007 01:23:03 -0000
1.4
+++ intranet-tmpl/prog/en/errors/500.tmpl 13 Jul 2007 16:01:33 -0000
1.5
@@ -3,15 +3,14 @@
<!-- TMPL_INCLUDE NAME="doc-head-close.inc" -->
<!-- TMPL_INCLUDE NAME="menus.inc" -->
-<div id="mainbloc">
+<div id="main">
<h1>An Error has Occurred!</h1>
<h2>Error 500</h2>
- <div id="main">
<ul>
<li>In Koha this typically means that the Koha team is working on new
features</li>
<li>Wait while system maintenance is being done or <a
href="mailto:<!-- TMPL_VAR NAME="admin" -->">email the Koha
Administrator</a>.</li>
<li>Use top menu bar to navigate to another part of Koha.</li>
</ul>
- </div>
</div>
+
<!-- TMPL_INCLUDE NAME="intranet-bottom.inc" -->
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] koha/koha-tmpl errors/400.pl errors/401.pl erro...,
Antoine Farnault <=