diff options
Diffstat (limited to 'fml/lib/FML/Process/TicketSystem.pm')
| -rw-r--r-- | fml/lib/FML/Process/TicketSystem.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fml/lib/FML/Process/TicketSystem.pm b/fml/lib/FML/Process/TicketSystem.pm index 9130686d..f728c5bf 100644 --- a/fml/lib/FML/Process/TicketSystem.pm +++ b/fml/lib/FML/Process/TicketSystem.pm @@ -45,13 +45,13 @@ sub run $curproc->lock(); { - $curproc->_ticket_list_up($args); + $curproc->_ticket_show_summary($args); } $curproc->unlock(); } -sub _ticket_list_up +sub _ticket_show_summary { my ($curproc, $args) = @_; my $config = $curproc->{ config }; @@ -62,7 +62,7 @@ sub _ticket_list_up eval qq{ require $pkg; $pkg->import();}; unless ($@) { my $ticket = $pkg->new($curproc, $args); - $ticket->list_up($curproc, $args); + $ticket->show_summary($curproc, $args); } else { Log($@); |
