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

(-)a/C4/Auth.pm (-1 / +1 lines)
Lines 93-99 C4::Auth - Authenticates Koha users Link Here
93
  use C4::Auth;
93
  use C4::Auth;
94
  use C4::Output;
94
  use C4::Output;
95
95
96
  my $query = new CGI;
96
  my $query = CGI->new;
97
97
98
  my ($template, $borrowernumber, $cookie)
98
  my ($template, $borrowernumber, $cookie)
99
    = get_template_and_user(
99
    = get_template_and_user(
(-)a/C4/Context.pm (-3 / +2 lines)
Lines 211-218 sub import { Link Here
211
211
212
=head2 new
212
=head2 new
213
213
214
  $context = new C4::Context;
214
  $context = C4::Context->new;
215
  $context = new C4::Context("/path/to/koha-conf.xml");
215
  $context = C4::Context->new("/path/to/koha-conf.xml");
216
216
217
Allocates a new context. Initializes the context from the specified
217
Allocates a new context. Initializes the context from the specified
218
file, which defaults to either the file given by the C<$KOHA_CONF>
218
file, which defaults to either the file given by the C<$KOHA_CONF>
219
- 

Return to bug 25898