From caf9efc7849ab11418f0bd452dda5481bdd4955b Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Tue, 5 Jul 2011 07:39:41 -0500 Subject: [PATCH] move autoflush to better location --- lib/WebGUI/Command.pm | 1 - sbin/webgui.pl | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Command.pm b/lib/WebGUI/Command.pm index 9b10ba638..f1696a9c2 100644 --- a/lib/WebGUI/Command.pm +++ b/lib/WebGUI/Command.pm @@ -4,7 +4,6 @@ use warnings; use App::Cmd::Setup -app; use constant plugin_search_path => __PACKAGE__; -$|++; 1; diff --git a/sbin/webgui.pl b/sbin/webgui.pl index ce3ecf7f3..d29a007b2 100755 --- a/sbin/webgui.pl +++ b/sbin/webgui.pl @@ -4,5 +4,6 @@ use warnings; use WebGUI::Paths -inc; use WebGUI::Command; +$|++; WebGUI::Command->run;