Thread Variable als Modulname
(4 answers)
Opened by roooot at 2008-03-14 16:24
Ich muss das schon in die while Schleife reinpacken?
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 opendir DIR, './module'; while( my $datei = readdir DIR ){ my $module = $datei; $module =~ s!\./module/!!; $module =~ s!\.pm$!!; $module =~ s!/!::!g; $xml .= '<modul name="'.$datei.'" version="'. $module->VERSION .'" />' } closedir DIR; Das ergibt dann nämlich folgenden Fehler: Code: (dl
)
Can't call method "VERSION" without a package or object reference at module/admin/tools.pm line 212. Viele Grüße :)
|