Bugzilla – Attachment 40559 Details for
Bug 14440
get_template_and_user can not have an empty template_name
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 14440: get_template_and_user can not have an empty template_name (quote*_ajax.pl)
Bug-14440-gettemplateanduser-can-not-have-an-empty.patch (text/plain), 2.67 KB, created by
Jonathan Druart
on 2015-06-24 09:06:23 UTC
(
hide
)
Description:
Bug 14440: get_template_and_user can not have an empty template_name (quote*_ajax.pl)
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2015-06-24 09:06:23 UTC
Size:
2.67 KB
patch
obsolete
>From e991d8cef3d92a53759d33ebb82ae6b28cd0d7ad Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@koha-community.org> >Date: Wed, 24 Jun 2015 11:03:22 +0200 >Subject: [PATCH] Bug 14440: get_template_and_user can not have an empty > template_name (quote*_ajax.pl) >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >This patch uses check_api_auth instead of get_template_and_user. > >Test plan: >Confirm that you are still able to access to the quote editor with the >edit_quotes permission. >Confirm that you are not if you don't have the permission. > >wget your_url/cgi-bin/koha/tools/quotes/quotes_ajax.pl >should return "403Â : Forbidden." >--- > tools/quotes/quotes-upload_ajax.pl | 16 ++++++---------- > tools/quotes/quotes_ajax.pl | 16 ++++++---------- > 2 files changed, 12 insertions(+), 20 deletions(-) > >diff --git a/tools/quotes/quotes-upload_ajax.pl b/tools/quotes/quotes-upload_ajax.pl >index 93bbfbe..179c645 100755 >--- a/tools/quotes/quotes-upload_ajax.pl >+++ b/tools/quotes/quotes-upload_ajax.pl >@@ -32,16 +32,12 @@ use C4::Output; > my $cgi = new CGI; > my $dbh = C4::Context->dbh; > >-my ( $template, $borrowernumber, $cookie ) = get_template_and_user( >- { >- template_name => "", >- query => $cgi, >- type => "intranet", >- authnotrequired => 0, >- flagsrequired => { tools => 'edit_quotes' }, >- debug => 1, >- } >-); >+my ( $status, $cookie, $sessionID ) = C4::Auth::check_api_auth( $cgi, { tools => 'edit_quotes' } ); >+unless ($status eq "ok") { >+ print $cgi->header(-type => 'application/json', -status => '403 Forbidden'); >+ print to_json({ auth_status => $status }); >+ exit 0; >+} > > my $success = 'true'; > >diff --git a/tools/quotes/quotes_ajax.pl b/tools/quotes/quotes_ajax.pl >index d08178f..c4bbae3 100755 >--- a/tools/quotes/quotes_ajax.pl >+++ b/tools/quotes/quotes_ajax.pl >@@ -31,16 +31,12 @@ my $cgi = CGI->new; > my $dbh = C4::Context->dbh; > my $sort_columns = ["id", "source", "text", "timestamp"]; > >-my ( $template, $borrowernumber, $cookie ) = get_template_and_user( >- { >- template_name => "", >- query => $cgi, >- type => "intranet", >- authnotrequired => 0, >- flagsrequired => { tools => 'edit_quotes' }, >- debug => 1, >- } >-); >+my ( $status, $cookie, $sessionID ) = C4::Auth::check_api_auth( $cgi, { tools => 'edit_quotes' } ); >+unless ($status eq "ok") { >+ print $cgi->header(-type => 'application/json', -status => '403 Forbidden'); >+ print to_json({ auth_status => $status }); >+ exit 0; >+} > > # NOTE: This is a collection of ajax functions for use with tools/quotes.pl > >-- >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 14440
:
40533
|
40544
|
40546
|
40559
|
40595
|
40600
|
40601
|
40602
|
40607
|
40608
|
40609
|
40620
|
40621
|
40622
|
40648