Revision ebef09a8
Von Thomas Kasulke vor fast 18 Jahren hinzugefügt
bin/mozilla/common.pl | ||
---|---|---|
9 | 9 |
# |
10 | 10 |
###################################################################### |
11 | 11 |
|
12 |
use SL::Form; |
|
12 | 13 |
use YAML; |
13 | 14 |
|
14 | 15 |
use SL::Common; |
... | ... | |
528 | 529 |
$lxdebug->leave_sub(); |
529 | 530 |
} |
530 | 531 |
|
532 |
sub show_history { |
|
533 |
$lxdebug->enter_sub(); |
|
534 |
my $dbh = $form->dbconnect(\%myconfig); |
|
535 |
|
|
536 |
$form->{title} = $locale->text("History"); |
|
537 |
$form->header(); |
|
538 |
print $form->parse_html_template( "common/show_history", { |
|
539 |
"DATEN" => $form->get_history($dbh,$form->{input_name}), |
|
540 |
"SUCCESS" => ($form->get_history($dbh,$form->{input_name}) ne "0") |
|
541 |
} ); |
|
542 |
|
|
543 |
$dbh->disconnect(); |
|
544 |
$lxdebug->leave_sub(); |
|
545 |
} |
|
546 |
|
|
531 | 547 |
1; |
Auch abrufbar als: Unified diff
Historie eingefügt