Remove unused references to global $wpdb

git-svn-id: https://develop.svn.wordpress.org/trunk@13240 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2010-02-20 00:50:29 +00:00
parent cf8e703218
commit 4011b3d4a8
6 changed files with 3 additions and 12 deletions

View File

@ -1208,11 +1208,8 @@ function untrailingslashit($string) {
* @return string Returns a string escaped with slashes.
*/
function addslashes_gpc($gpc) {
global $wpdb;
if (get_magic_quotes_gpc()) {
if ( get_magic_quotes_gpc() )
$gpc = stripslashes($gpc);
}
return esc_sql($gpc);
}

View File

@ -1442,15 +1442,12 @@ function remove_query_arg( $key, $query=false ) {
/**
* Walks the array while sanitizing the contents.
*
* @uses $wpdb Used to sanitize values
* @since 0.71
*
* @param array $array Array to used to walk while sanitizing contents.
* @return array Sanitized $array.
*/
function add_magic_quotes( $array ) {
global $wpdb;
foreach ( (array) $array as $k => $v ) {
if ( is_array( $v ) ) {
$array[$k] = add_magic_quotes( $v );

View File

@ -1076,7 +1076,7 @@ function prev_post_rel_link($title = '%title', $in_same_cat = false, $excluded_c
* @return object
*/
function get_boundary_post($in_same_cat = false, $excluded_categories = '', $start = true) {
global $post, $wpdb;
global $post;
if ( empty($post) || !is_single() || is_attachment() )
return null;

View File

@ -1051,8 +1051,6 @@ function get_current_site() {
}
function get_user_id_from_string( $string ) {
global $wpdb;
$user_id = 0;
if ( is_email( $string ) ) {
$user = get_user_by('email', $string);

View File

@ -3930,7 +3930,7 @@ function update_postmeta_cache($post_ids) {
* @param bool $clean_terms optional. Whether to clean terms cache
*/
function clean_attachment_cache($id, $clean_terms = false) {
global $_wp_suspend_cache_invalidation, $wpdb;
global $_wp_suspend_cache_invalidation;
if ( !empty($_wp_suspend_cache_invalidation) )
return;

View File

@ -715,7 +715,6 @@ class RSSCache {
Output: true on sucess
\*=======================================================================*/
function set ($url, $rss) {
global $wpdb;
$cache_option = 'rss_' . $this->file_name( $url );
set_transient($cache_option, $rss, $this->MAX_AGE);