Macros process on one pass.

This commit is contained in:
JT Smith 2003-03-02 17:02:18 +00:00
parent 8e4c8a9fd8
commit 0ebac2be41
22 changed files with 24 additions and 51 deletions

View file

@ -17,7 +17,6 @@ package WebGUI::Style;
use strict;
use Tie::CPHash;
use WebGUI::Macro;
use WebGUI::Session;
use WebGUI::SQL;
use WebGUI::Template;
@ -79,7 +78,7 @@ sub get {
}
$header .= '</head>'.$body[0];
$footer = $body[1].' </html>';
return WebGUI::Macro::process($header.$_[0].$footer);
return $header.$_[0].$footer;
}