Bug 8490: fix Plack error when creating label layout
authorPaul Poulain <paul.poulain@biblibre.com>
Fri, 2 Nov 2012 11:16:19 +0000 (12:16 +0100)
committerJared Camins-Esakov <jcamins@cpbibliography.com>
Mon, 5 Nov 2012 13:35:06 +0000 (08:35 -0500)
commit7002e5d86af573359700d582c829af83acf87bc5
tree07fe037fb352e70faab1e6e78294c1c8d740ad6a
parentb6b63294351847a1326b7772c105d84aaa60f493
Bug 8490: fix Plack error when creating label layout

This patch fixes "Error message "Can't bless non-reference value at
/home/pi/koha/C4/Creators/Layout.pm line 111." when trying to add a
label layout while using plack."

The $layout_id variable is set to 5001 on my setup. And 5001 is the Unix
port where I run Plack. WTH is this value stored in this variable ?
Because of
> my $layout_id = $cgi->param('layout_id') || $cgi->param('element_id') || $ARGV[1] || '';
in label-edit-layout.pl

Removing $ARGV[1] solves the problem
Also removing $ARG[0] because I also don't think it's useful

Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
Signed off after confirming with Chris Nighswonger that these scripts
were not intended to be run from the command line. Works as promised.

Passed-QA-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
labels/label-edit-layout.pl