summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Process/CGI.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-06-10 11:24:11 +0000
committerfukachan <fukachan>2001-06-10 11:24:11 +0000
commita33aab4318cb9db5b256bde58dde891a562aadfa (patch)
tree5940b92002d985235c9fc1b8f25aacaa6d9701fe /fml/lib/FML/Process/CGI.pm
parent02dc1a35784121c632387121810b10100fb80d66 (diff)
downloadfml8-a33aab4318cb9db5b256bde58dde891a562aadfa.tar.gz
fml8-a33aab4318cb9db5b256bde58dde891a562aadfa.tar.bz2
fml8-a33aab4318cb9db5b256bde58dde891a562aadfa.zip
modify to use $ticket_driver. $ticket_driver is class name not model
name.
Diffstat (limited to 'fml/lib/FML/Process/CGI.pm')
-rw-r--r--fml/lib/FML/Process/CGI.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/fml/lib/FML/Process/CGI.pm b/fml/lib/FML/Process/CGI.pm
index 051ae55c..6a0044fa 100644
--- a/fml/lib/FML/Process/CGI.pm
+++ b/fml/lib/FML/Process/CGI.pm
@@ -4,7 +4,7 @@
# All rights reserved. This program is free software; you can
# redistribute it and/or modify it under the same terms as Perl itself.
#
-# $FML: CGI.pm,v 1.12 2001/04/03 09:45:43 fukachan Exp $
+# $FML: CGI.pm,v 1.13 2001/05/28 16:17:13 fukachan Exp $
#
package FML::Process::CGI;
@@ -120,7 +120,7 @@ sub run
# model specific ticket object
if ($myname eq 'fmlticket.cgi') {
- my $module = 'FML::Ticket::Model::'.$config->{ ticket_model };
+ my $module = $config->{ ticket_driver };
my $ticket = $curproc->load_module($args, $module);
$ticket->mode({ mode => 'html' });
$ticket->run_cgi($curproc, $args);