summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--program/include/html.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/program/include/html.php b/program/include/html.php
index d0ab97633..4ac45da65 100644
--- a/program/include/html.php
+++ b/program/include/html.php
@@ -441,9 +441,10 @@ class html_textarea extends html
unset($this->attrib['value']);
}
- if (!empty($value) && !isset($this->attrib['mce_editable'])) {
+ if (!empty($value) && !ereg('mce_editor', $this->attrib['class'])) {
$value = Q($value, 'strict', false);
}
+
return self::tag($this->tagname, $this->attrib, $value, array_merge(self::$common_attrib, $this->allowed_attrib));
}
}