X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=serials%2Fsubscription-renew.pl;h=48861bcae47419c82de73c3dc90fc22ed3733e85;hb=791fe1bbd7ccf58110fa0da9f751eccb199a6c47;hp=8846826f7de87fbea50a8fa063d77848944ea128;hpb=4747ea7462c04770484386538b1594c1760bc75b;p=koha.git diff --git a/serials/subscription-renew.pl b/serials/subscription-renew.pl index 8846826f7d..48861bcae4 100755 --- a/serials/subscription-renew.pl +++ b/serials/subscription-renew.pl @@ -13,9 +13,9 @@ # 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 +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. =head1 NAME @@ -47,6 +47,7 @@ use strict; use warnings; use CGI; +use Carp; use C4::Koha; use C4::Auth; use C4::Dates qw/format_date/; @@ -68,7 +69,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( query => $query, type => "intranet", authnotrequired => 0, - flagsrequired => { serials => 1 }, + flagsrequired => { serials => 'renew_subscription' }, debug => 1, } ); @@ -83,7 +84,7 @@ if ( $op eq "renew" ) { my $subscription = GetSubscription($subscriptionid); if ($subscription->{'cannotedit'}){ - warn "Attempt to renew subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed"; + carp "Attempt to renew subscription $subscriptionid by ".C4::Context->userenv->{'id'}." not allowed"; print $query->redirect("/cgi-bin/koha/serials/subscription-detail.pl?subscriptionid=$subscriptionid"); }