Bugzilla – Attachment 40531 Details for
Bug 14439
Typo in Bug 14408 regexp
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14439: Typo in Bug 14408 regexp
Bug-14439-Typo-in-Bug-14408-regexp.patch (text/plain), 1.07 KB, created by
Jonathan Druart
on 2015-06-23 14:20:36 UTC
(
hide
)
Description:
Bug 14439: Typo in Bug 14408 regexp
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2015-06-23 14:20:36 UTC
Size:
1.07 KB
patch
obsolete
>From e3c5750a532d42c51af2c98db218605d50e213f2 Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >Date: Tue, 23 Jun 2015 15:50:39 +0200 >Subject: [PATCH] Bug 14439: Typo in Bug 14408 regexp > >In Bug 14408 first patch, the regexp used needs an escape on dot and does not need an ending "?" > >Test plan : > - prove t/db_dependent/Auth.t > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> > >Signed-off-by: Jonathan Druart <jonathan.druart@koha-community.org> >--- > C4/Auth.pm | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/C4/Auth.pm b/C4/Auth.pm >index 34c3f91..268ef35 100644 >--- a/C4/Auth.pm >+++ b/C4/Auth.pm >@@ -159,7 +159,7 @@ sub get_template_and_user { > C4::Context->interface( $in->{type} ); > > my $safe_chars = 'a-zA-Z0-9_\-\/'; >- die "bad template path" unless $in->{'template_name'} =~ m/^[$safe_chars]+.tt?$/ig; #sanitize input >+ die "bad template path" unless $in->{'template_name'} =~ m/^[$safe_chars]+\.tt$/ig; #sanitize input > > $in->{'authnotrequired'} ||= 0; > my $template = C4::Templates::gettemplate( >-- >2.1.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 14439
:
40524
|
40525
|
40528
|
40529
|
40530
| 40531 |
40532