Revision 09479f02
Von Moritz Bunkus vor mehr als 8 Jahren hinzugefügt
bin/mozilla/io.pl | ||
---|---|---|
860 | 860 |
if ($form->{rowcount} == 1) { |
861 | 861 |
flash('warning', $::locale->text('The action you\'ve chosen has not been executed because the document does not contain any item yet.')); |
862 | 862 |
&update; |
863 |
::end_of_request();
|
|
863 |
$::dispatcher->end_request;
|
|
864 | 864 |
} |
865 | 865 |
|
866 | 866 |
for my $i (1 .. $form->{rowcount} - 1) { |
... | ... | |
1147 | 1147 |
$form->{formname} = $formname; |
1148 | 1148 |
&edit(); |
1149 | 1149 |
$::lxdebug->leave_sub(); |
1150 |
::end_of_request();
|
|
1150 |
$::dispatcher->end_request;
|
|
1151 | 1151 |
} |
1152 | 1152 |
|
1153 | 1153 |
&print_form($old_form); |
... | ... | |
1591 | 1591 |
} |
1592 | 1592 |
|
1593 | 1593 |
call_sub($display_form); |
1594 |
::end_of_request();
|
|
1594 |
$::dispatcher->end_request;
|
|
1595 | 1595 |
} |
1596 | 1596 |
|
1597 | 1597 |
my $msg = |
... | ... | |
1605 | 1605 |
} |
1606 | 1606 |
if ($form->{printing}) { |
1607 | 1607 |
call_sub($display_form); |
1608 |
::end_of_request();
|
|
1608 |
$::dispatcher->end_request;
|
|
1609 | 1609 |
} |
1610 | 1610 |
|
1611 | 1611 |
$main::lxdebug->leave_sub(); |
Auch abrufbar als: Unified diff
Dispatcher: end_of_request() sub aus main namespace verbannt