diff options
Diffstat (limited to 'Xerl')
| -rw-r--r-- | Xerl/Page/Content.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Xerl/Page/Content.pm b/Xerl/Page/Content.pm index 29fc519..3a33c85 100644 --- a/Xerl/Page/Content.pm +++ b/Xerl/Page/Content.pm @@ -118,8 +118,8 @@ sub _insertrules($$$) { } elsif ( lc $name eq 'includerun' ) { my $scriptpath = $config->get_contentpath() . $text; - - push @content, eval $scriptcode; + my $io = Xerl::Tools::FileIO->new( path => $scriptpath ); + push @content, eval $io->fslurp(); } elsif ( lc $name eq 'navigation' ) { |
