[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha C4/Auth.pm installer/InstallAuth.pm
From: |
Joshua Ferraro |
Subject: |
[Koha-cvs] koha C4/Auth.pm installer/InstallAuth.pm |
Date: |
Tue, 03 Jul 2007 18:29:37 +0000 |
CVSROOT: /sources/koha
Module name: koha
Changes by: Joshua Ferraro <kados> 07/07/03 18:29:37
Modified files:
C4 : Auth.pm
installer : InstallAuth.pm
Log message:
replacing SUPER with NO_LIBRARY_SET for login information
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Auth.pm?cvsroot=koha&r1=1.66&r2=1.67
http://cvs.savannah.gnu.org/viewcvs/koha/installer/InstallAuth.pm?cvsroot=koha&r1=1.4&r2=1.5
Patches:
Index: C4/Auth.pm
===================================================================
RCS file: /sources/koha/koha/C4/Auth.pm,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -b -r1.66 -r1.67
--- C4/Auth.pm 3 Jul 2007 13:50:20 -0000 1.66
+++ C4/Auth.pm 3 Jul 2007 18:29:37 -0000 1.67
@@ -36,7 +36,7 @@
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
# set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.66 $' =~ /\d+/g;
+$VERSION = do { my @v = '$Revision: 1.67 $' =~ /\d+/g;
shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v );
};
@@ -579,7 +579,7 @@
C4::Context->config('user'),
C4::Context->config('user'),
"",
- "SUPER",
+ "NO_LIBRARY_SET",
1,
C4::Context->preference('KohaAdminEmailAddress')
);
Index: installer/InstallAuth.pm
===================================================================
RCS file: /sources/koha/koha/installer/InstallAuth.pm,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- installer/InstallAuth.pm 5 Jun 2007 08:53:19 -0000 1.4
+++ installer/InstallAuth.pm 3 Jul 2007 18:29:37 -0000 1.5
@@ -31,7 +31,7 @@
use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
# set the version for version checking
-$VERSION = do { my @v = '$Revision: 1.4 $' =~ /\d+/g;
+$VERSION = do { my @v = '$Revision: 1.5 $' =~ /\d+/g;
shift(@v) . "." . join( "_", map { sprintf "%03d", $_ } @v );
};
@@ -300,7 +300,7 @@
C4::Context->config('user'),
C4::Context->config('user'),
"",
- "SUPER",
+ "NO_LIBRARY_SET",
1,""
);
$envcookie = $query->cookie(
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] koha C4/Auth.pm installer/InstallAuth.pm,
Joshua Ferraro <=