View | Details | Raw Unified | Return to bug 20013
Collapse All | Expand All

(-)a/reserve/modrequest.pl (-2 / +1 lines)
Lines 22-29 Link Here
22
# You should have received a copy of the GNU General Public License
22
# You should have received a copy of the GNU General Public License
23
# along with Koha; if not, see <http://www.gnu.org/licenses>.
23
# along with Koha; if not, see <http://www.gnu.org/licenses>.
24
24
25
use strict;
25
use Modern::Perl;
26
use warnings;
27
use CGI qw ( -utf8 );
26
use CGI qw ( -utf8 );
28
use C4::Output;
27
use C4::Output;
29
use C4::Reserves;
28
use C4::Reserves;
(-)a/reserve/modrequest_suspendall.pl (-2 / +1 lines)
Lines 22-29 Link Here
22
# You should have received a copy of the GNU General Public License
22
# You should have received a copy of the GNU General Public License
23
# along with Koha; if not, see <http://www.gnu.org/licenses>.
23
# along with Koha; if not, see <http://www.gnu.org/licenses>.
24
24
25
use strict;
25
use Modern::Perl;
26
use warnings;
27
use CGI qw ( -utf8 );
26
use CGI qw ( -utf8 );
28
use C4::Output;
27
use C4::Output;
29
use C4::Reserves;
28
use C4::Reserves;
(-)a/reserve/placerequest.pl (-3 / +1 lines)
Lines 21-28 Link Here
21
# You should have received a copy of the GNU General Public License
21
# You should have received a copy of the GNU General Public License
22
# along with Koha; if not, see <http://www.gnu.org/licenses>.
22
# along with Koha; if not, see <http://www.gnu.org/licenses>.
23
23
24
use strict;
24
use Modern::Perl;
25
use warnings;
26
25
27
use CGI qw ( -utf8 );
26
use CGI qw ( -utf8 );
28
use C4::Biblio;
27
use C4::Biblio;
29
- 

Return to bug 20013