diff options
author | Brenda Wallace <shiny@cpan.org> | 2009-08-25 09:14:43 +1200 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2009-08-25 09:14:43 +1200 |
commit | 6bae2ad03a538c8c301b173b0dd6845aa181f3c5 (patch) | |
tree | 82e055904c9bf158df5f09e87ed057090d9b5256 | |
parent | f3cdc7f272e409d391979d3e6c58dd63573530c0 (diff) |
fix up tpl/index.php so doesn't throw errors on hosts with php shorttags on
-rw-r--r-- | tpl/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tpl/index.php b/tpl/index.php index be375e75a..36a161144 100644 --- a/tpl/index.php +++ b/tpl/index.php @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> +<?php echo '<?';?>xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title><?php echo section('title'); ?></title> |