Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bestpractical/rt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Vincent <jesse@bestpractical.com>2001-03-28 21:15:11 +0400
committerJesse Vincent <jesse@bestpractical.com>2001-03-28 21:15:11 +0400
commit74298b94bc29a56cd44437af8642ce942e3c679d (patch)
tree97c343d3acbb2e9fadf559e2827fd99a3609c5c0
parentdfc28f3960e9ab28c36cbde1f33c49cc1c61b3b9 (diff)
Fixed a tiny bug in the new authandler that caused logout to failrt-1.3.64
-rwxr-xr-xMakefile2
-rwxr-xr-xwebrt/autohandler1
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cc853e4d86..2d44ed97a3 100755
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ PERL = /usr/bin/perl
RT_VERSION_MAJOR = 1
RT_VERSION_MINOR = 3
-RT_VERSION_PATCH = 63
+RT_VERSION_PATCH = 64
RT_VERSION = $(RT_VERSION_MAJOR).$(RT_VERSION_MINOR).$(RT_VERSION_PATCH)
diff --git a/webrt/autohandler b/webrt/autohandler
index 5bebf340cb..d8d75dd981 100755
--- a/webrt/autohandler
+++ b/webrt/autohandler
@@ -5,6 +5,7 @@
#if it's a noauth file, don't ask for auth.
if ($m->base_comp->path =~ '^/NoAuth/') {
$m->call_next();
+ $m->abort();
}
# If the user is loging in, let's authenticate