diff options
author | Andrey Andreev <narf@devilix.net> | 2013-10-03 12:56:32 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-10-03 12:56:32 +0200 |
commit | 6eb6e8a12f477b9e10de9b907310f53a17d63358 (patch) | |
tree | 4c131d74f662abbbe9ccf6b054085166f0fdac1f /system/core | |
parent | 57ba100129c2807153d88dc4e1d423f6e6c8a9a6 (diff) | |
parent | a442bc2bced3bd9359548c376f99027d5334a1c7 (diff) |
Merge pull request #2669 from DaveMC08/feature/re_fixes_2637
re-fixes #2637
Diffstat (limited to 'system/core')
-rw-r--r-- | system/core/Output.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/Output.php b/system/core/Output.php index 7a5fb66f6..04209d920 100644 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -847,7 +847,7 @@ class CI_Output { } // Remove CSS comments - $output = preg_replace('!/\*([^/][^*]*\*)*/(?!.+?["\'])!i', '', $output); + $output = preg_replace('@/\*([^/][^*]*\*)*/(?!.+?["\'])@i', '', $output); // Remove Javascript inline comments if ($has_tags === TRUE && strpos(strtolower($open_tag), 'script') !== FALSE) |