Lines 26-33
my ($template, $loggedinuser, $cookie) = get_template_and_user({
Link Here
|
26 |
debug => 0, |
26 |
debug => 0, |
27 |
}); |
27 |
}); |
28 |
|
28 |
|
29 |
my $image_name = $cgi->param('image_name') || ''; |
|
|
30 |
my $file_name = $cgi->param('uploadfile') || ''; |
29 |
my $file_name = $cgi->param('uploadfile') || ''; |
|
|
30 |
my $image_name = $cgi->param('image_name') || $file_name; |
31 |
my $upload_file = $cgi->upload('uploadfile') || ''; |
31 |
my $upload_file = $cgi->upload('uploadfile') || ''; |
32 |
my $op = $cgi->param('op') || 'none'; |
32 |
my $op = $cgi->param('op') || 'none'; |
33 |
my @image_ids = $cgi->multi_param('image_id') if $cgi->param('image_id'); |
33 |
my @image_ids = $cgi->multi_param('image_id') if $cgi->param('image_id'); |
34 |
- |
|
|