diff options
Diffstat (limited to 'system')
-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 cf5178a0c..a20841463 100644 --- a/system/core/Output.php +++ b/system/core/Output.php @@ -772,7 +772,7 @@ class CI_Output { $output = str_replace($codes_messed[0], $codes_clean[0], $output); } - if ( ! empty($codes_clean)) + if ( ! empty($textareas_clean)) { preg_match_all('{<textarea.+</textarea>}msU', $output, $textareas_messed); $output = str_replace($textareas_messed[0], $textareas_clean[0], $output); |