summaryrefslogtreecommitdiffstats
path: root/system/core/Loader.php
diff options
context:
space:
mode:
authorMike Funk <mfunk@xulonpress.com>2012-03-07 19:29:37 +0100
committerMike Funk <mfunk@xulonpress.com>2012-03-07 19:29:37 +0100
commit1909b5b1dd5e2d6847cbe4a87a0aadd52b506681 (patch)
tree8aaf0c86aa49dc0bacd55daeb2144d40c37ae8e0 /system/core/Loader.php
parenta90b1f2f89a41b2fe061f5fdd3f84f08b961a887 (diff)
parent1d571971be8be78a92d31aad27dda4009770043f (diff)
merged from develop, fixed conflict in user guide.
Diffstat (limited to 'system/core/Loader.php')
-rw-r--r--system/core/Loader.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Loader.php b/system/core/Loader.php
index 12daaa928..20cf7ef33 100644
--- a/system/core/Loader.php
+++ b/system/core/Loader.php
@@ -833,7 +833,7 @@ class CI_Loader {
// If the PHP installation does not support short tags we'll
// do a little string replacement, changing the short tags
// to standard PHP echo statements.
- if ((bool) @ini_get('short_open_tag') === FALSE AND config_item('rewrite_short_tags') == TRUE)
+ if ( ! is_php('5.4') && (bool) @ini_get('short_open_tag') === FALSE && config_item('rewrite_short_tags') == TRUE)
{
echo eval('?>'.preg_replace('/;*\s*\?>/', '; ?>', str_replace('<?=', '<?php echo ', file_get_contents($_ci_path))));
}