caparuni Posted April 16, 2009 Share Posted April 16, 2009 there a blacklist word on Db.php to filter the reserved words in mysql. how about just quote the word so we still can input the words instead blacklisted it.. ive modify DB.php a little....from : public static function blacklist(&$query) { return eregi(self::$_blacklist, $query) ? true : false; } to : public static function blacklist(&$query) { return eregi_replace( "(self::$_blacklist)", "`\\1`", $query); } :: cmiiw :: Link to comment Share on other sites More sharing options...
d0m1n1k Posted April 17, 2009 Share Posted April 17, 2009 the blacklist is completely removed in the new release Link to comment Share on other sites More sharing options...
Recommended Posts