diff options
Diffstat (limited to 'Wiztemplate.pm')
-rwxr-xr-x | Wiztemplate.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Wiztemplate.pm b/Wiztemplate.pm index 737ed509..68a19f33 100755 --- a/Wiztemplate.pm +++ b/Wiztemplate.pm @@ -19,7 +19,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -package WizTemplate; +package Wiztemplate; use strict; use common; @@ -34,7 +34,7 @@ my $o = { ip2 => '' }, needed_packages => [], - defaultimage => "$ENV{__WIZ_HOME__}", + defaultimage => $ENV{__WIZ_HOME__}, }; $o->{pages} = { @@ -82,7 +82,7 @@ $o->{pages} = { }; sub new { - my ($class, $conf) = @_; + my ($class) = @_; bless { o => $o, }, $class; |