Lines 58-66
is(C4::Auth_with_cas::_url_with_get_params($cgi, 'opac'),
Link Here
|
58 |
"$opac_base_url/cgi-bin/koha/opac-user.pl?bar=baz", |
58 |
"$opac_base_url/cgi-bin/koha/opac-user.pl?bar=baz", |
59 |
"_url_with_get_params should return URL without deleted parameters (Bug 12398)"); |
59 |
"_url_with_get_params should return URL without deleted parameters (Bug 12398)"); |
60 |
|
60 |
|
|
|
61 |
$ENV{SCRIPT_NAME} = '/cgi-bin/koha/circ/circulation-home.pl'; |
61 |
# intranet url test |
62 |
# intranet url test |
62 |
is(C4::Auth_with_cas::_url_with_get_params($cgi, 'intranet'), |
63 |
is(C4::Auth_with_cas::_url_with_get_params($cgi, 'intranet'), |
63 |
"$staff_base_url?bar=baz", |
64 |
"$staff_base_url/cgi-bin/koha/circ/circulation-home.pl?bar=baz", |
64 |
"Intranet URL should be returned when using intranet login (Bug 13507)"); |
65 |
"Intranet URL should be returned when using intranet login (Bug 13507)"); |
65 |
|
66 |
|
66 |
|
67 |
|
67 |
- |
|
|