diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-02 08:16:16 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-02 08:16:16 +0000 |
commit | a55a0d99d1a2bd7368fdbb0831f4864e97af6752 (patch) | |
tree | c878419dcc26efdc76b96913623c391a2cb11297 /includes/database/mysql | |
parent | 1957c641e5e04b1fcd503b84511d097aa2d101c5 (diff) | |
download | brdo-a55a0d99d1a2bd7368fdbb0831f4864e97af6752.tar.gz brdo-a55a0d99d1a2bd7368fdbb0831f4864e97af6752.tar.bz2 |
#412410 by c960657: Make schema descriptions plain text.
Diffstat (limited to 'includes/database/mysql')
-rw-r--r-- | includes/database/mysql/schema.inc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/includes/database/mysql/schema.inc b/includes/database/mysql/schema.inc index 48e4c2eb7..827f274aa 100644 --- a/includes/database/mysql/schema.inc +++ b/includes/database/mysql/schema.inc @@ -349,9 +349,6 @@ class DatabaseSchema_mysql extends DatabaseSchema { } public function prepareComment($comment, $length = NULL) { - // Decode HTML-encoded comments. - $comment = decode_entities(strip_tags($comment)); - // Work around a bug in some versions of PDO, see http://bugs.php.net/bug.php?id=41125 $comment = str_replace("'", '’', $comment); |