esc_sql() for wp-includes

git-svn-id: http://svn.automattic.com/wordpress/trunk@11978 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith
2009-09-27 05:33:56 +00:00
parent e73a081be7
commit 4ead128521
7 changed files with 15 additions and 15 deletions

View File

@@ -1110,7 +1110,7 @@ function addslashes_gpc($gpc) {
$gpc = stripslashes($gpc);
}
return $wpdb->escape($gpc);
return esc_sql($gpc);
}
/**
@@ -1280,7 +1280,7 @@ function wp_rel_nofollow( $text ) {
// This is a pre save filter, so text is already escaped.
$text = stripslashes($text);
$text = preg_replace_callback('|<a (.+?)>|i', 'wp_rel_nofollow_callback', $text);
$text = $wpdb->escape($text);
$text = esc_sql($text);
return $text;
}