From 463b572112797d1f73984240f2d1a16caad72fdf Mon Sep 17 00:00:00 2001 From: Chris Date: Wed, 21 Sep 2011 14:45:57 +0100 Subject: [PATCH] Helps if I do it properly, though... --- Modules.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules.pm b/Modules.pm index 564dd0c..de7242b 100644 --- a/Modules.pm +++ b/Modules.pm @@ -184,7 +184,7 @@ sub _new_module_internal { my $name = $modrow -> {"perl_module"}; no strict "refs"; # must disable strict references to allow named module loading. - eval "require $name.pm"; + eval "require $name"; # Set up the module argument hash... my %args = ( "modid" => $modrow -> {"id"},