DB escaping comments. MDL-8918

This commit is contained in:
stronk7
2007-03-15 18:59:02 +00:00
parent 43d78a231d
commit 4bf57cbfa6
3 changed files with 3 additions and 3 deletions
@@ -135,7 +135,7 @@ class XMLDBpostgres7 extends XMLDBgenerator {
function getCommentSQL ($xmldb_table) {
$comment = "COMMENT ON TABLE " . $this->getTableName($xmldb_table);
$comment.= " IS '" . substr($xmldb_table->getComment(), 0, 250) . "'";
$comment.= " IS '" . addslashes(substr($xmldb_table->getComment(), 0, 250)) . "'";
return array($comment);
}