Revision 09479f02
Von Moritz Bunkus vor mehr als 8 Jahren hinzugefügt
SL/Form.pm | ||
---|---|---|
608 | 608 |
my $info = "Web page template '${file}' not found.\n"; |
609 | 609 |
$::form->header; |
610 | 610 |
print qq|<pre>$info</pre>|; |
611 |
::end_of_request();
|
|
611 |
$::dispatcher->end_request;
|
|
612 | 612 |
} |
613 | 613 |
|
614 | 614 |
$additional_params->{AUTH} = $::auth; |
... | ... | |
685 | 685 |
SL::ClientJS->new |
686 | 686 |
->error($error) |
687 | 687 |
->render(SL::Controller::Base->new); |
688 |
::end_of_request();
|
|
688 |
$::dispatcher->end_request;
|
|
689 | 689 |
} |
690 | 690 |
|
691 | 691 |
my $add_params = { |
... | ... | |
716 | 716 |
|
717 | 717 |
$main::lxdebug->leave_sub(); |
718 | 718 |
|
719 |
::end_of_request();
|
|
719 |
$::dispatcher->end_request;
|
|
720 | 720 |
} |
721 | 721 |
|
722 | 722 |
sub show_generic_information { |
... | ... | |
736 | 736 |
|
737 | 737 |
$main::lxdebug->leave_sub(); |
738 | 738 |
|
739 |
::end_of_request();
|
|
739 |
$::dispatcher->end_request;
|
|
740 | 740 |
} |
741 | 741 |
|
742 | 742 |
sub _store_redirect_info_in_session { |
... | ... | |
762 | 762 |
print $::form->redirect_header($self->{callback}); |
763 | 763 |
} |
764 | 764 |
|
765 |
::end_of_request();
|
|
765 |
$::dispatcher->end_request;
|
|
766 | 766 |
|
767 | 767 |
$main::lxdebug->leave_sub(); |
768 | 768 |
} |
... | ... | |
2630 | 2630 |
t8("The document has been changed by another user. No mail was sent. Please reopen it in another window and copy the changes to the new window") : |
2631 | 2631 |
t8("The document has been changed by another user. Please reopen it in another window and copy the changes to the new window") |
2632 | 2632 |
); |
2633 |
::end_of_request();
|
|
2633 |
$::dispatcher->end_request;
|
|
2634 | 2634 |
} |
2635 | 2635 |
} |
2636 | 2636 |
|
Auch abrufbar als: Unified diff
Dispatcher: end_of_request() sub aus main namespace verbannt