summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfukachan <fukachan>2005-08-19 11:20:23 +0000
committerfukachan <fukachan>2005-08-19 11:20:23 +0000
commit792b657553a53aa0e5f6a1e0fda1a841e4b835cf (patch)
tree72985f0938dad28a1dfa53b4d08b8d389e6edfef
parentee6ba47050e60a93a6065aa3146c500170ea74d5 (diff)
downloadfml8-792b657553a53aa0e5f6a1e0fda1a841e4b835cf.tar.gz
fml8-792b657553a53aa0e5f6a1e0fda1a841e4b835cf.tar.bz2
fml8-792b657553a53aa0e5f6a1e0fda1a841e4b835cf.zip
$curproc->output_{set,get}_print_style().
-rw-r--r--fml/lib/FML/Command/Admin/log.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/fml/lib/FML/Command/Admin/log.pm b/fml/lib/FML/Command/Admin/log.pm
index c9430889..27ffae47 100644
--- a/fml/lib/FML/Command/Admin/log.pm
+++ b/fml/lib/FML/Command/Admin/log.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: log.pm,v 1.28 2005/08/17 10:33:17 fukachan Exp $
+# $FML: log.pm,v 1.29 2005/08/17 12:08:43 fukachan Exp $
#
package FML::Command::Admin::log;
@@ -63,7 +63,7 @@ sub process
my $log_file = $config->{ log_file };
if (-f $log_file) {
- my $style = $curproc->get_print_style();
+ my $style = $curproc->output_get_print_style();
$self->_show_log($curproc, $log_file, { printing_style => $style });
}
}
@@ -80,7 +80,7 @@ sub cgi_menu
my $log_file = $config->{ log_file };
if (-f $log_file) {
- my $style = $curproc->get_print_style();
+ my $style = $curproc->output_get_print_style();
$self->_show_log($curproc, $log_file, { printing_style => $style });
}
}