diff options
-rw-r--r-- | Templates.class.php | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/Templates.class.php b/Templates.class.php index 9cfec4f..47467a7 100644 --- a/Templates.class.php +++ b/Templates.class.php @@ -103,16 +103,10 @@ function html_default($body, $head = NULL) { ?> <html> <head> -<?php -if($head != NULL) { - $head(); -} -?> +<?php if($head != NULL) { $head(); } ?> </head> <body> -<?php -invoke($body); -?> +<?php invoke($body); ?> </body> </html> <?php |