|
Lines 158-163
sub get_template_and_user {
Link Here
|
| 158 |
|
158 |
|
| 159 |
C4::Context->interface( $in->{type} ); |
159 |
C4::Context->interface( $in->{type} ); |
| 160 |
|
160 |
|
|
|
161 |
my $safe_chars = 'a-zA-Z_\-\/'; |
| 162 |
die "bad template path" unless $in->{'template_name'} =~ m/^[$safe_chars]+.tt?$/ig; #sanitize input |
| 163 |
|
| 161 |
$in->{'authnotrequired'} ||= 0; |
164 |
$in->{'authnotrequired'} ||= 0; |
| 162 |
my $template = C4::Templates::gettemplate( |
165 |
my $template = C4::Templates::gettemplate( |
| 163 |
$in->{'template_name'}, |
166 |
$in->{'template_name'}, |
| 164 |
- |
|
|