Skip to:
Content

bbPress.org

Changeset 6191


Ignore:
Timestamp:
12/28/2016 04:24:52 AM (9 years ago)
Author:
johnjamesjacoby
Message:

Audit direct query and prepare() usages, and more tightly adhere to best practices.

  • No quotes around directives
  • Avoid concatenation, prefer variable parsing in double-quoted strings
  • Covers converters, helper functions, and tools
Location:
trunk/src/includes
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/converter.php

    r6184 r6191  
    664664                    KEY value_id (value_id),
    665665                    KEY meta_join (meta_key({$max_index_length}), meta_value({$max_index_length}))
    666                 ) {$charset_collate};";
     666                ) {$charset_collate}";
    667667
    668668        dbDelta( $sql );
     
    10161016            // Get some data from the old forums
    10171017            $field_list  = array_unique( $field_list );
    1018             $forum_query = 'SELECT ' . implode( ',', $field_list ) . ' FROM ' . $this->opdb->prefix . $from_tablename . ' LIMIT ' . $start . ', ' . $this->max_rows;
     1018            $fields      = implode( ',', $field_list );
     1019            $forum_query = "SELECT {$fields} FROM {$this->opdb->prefix}{$from_tablename} LIMIT {$start}, {$this->max_rows}";
    10191020            $forum_array = $this->opdb->get_results( $forum_query, ARRAY_A );
    10201021
     
    12541255
    12551256        if ( ! empty( $this->sync_table ) ) {
    1256             $query = 'SELECT value_id, meta_value FROM '            . $this->sync_table_name . ' WHERE meta_key = "_bbp_old_forum_parent_id" AND meta_value > 0 LIMIT ' . $start . ', ' . $this->max_rows;
     1257            $query = $this->wpdb->prepare( "SELECT value_id, meta_value FROM {$this->sync_table_name} WHERE meta_key = %s AND meta_value > 0 LIMIT {$start}, {$this->max_rows}", '_bbp_old_forum_parent_id' );
    12571258        } else {
    1258             $query = 'SELECT post_id AS value_id, meta_value FROM ' . $this->wpdb->postmeta  . ' WHERE meta_key = "_bbp_old_forum_parent_id" AND meta_value > 0 LIMIT ' . $start . ', ' . $this->max_rows;
     1259            $query = $this->wpdb->prepare( "SELECT post_id AS value_id, meta_value FROM {$this->wpdb->postmeta} WHERE meta_key = %s AND meta_value > 0 LIMIT {$start}, {$this->max_rows}", '_bbp_old_forum_parent_id' );
    12591260        }
    12601261
     
    12651266        foreach ( (array) $forum_array as $row ) {
    12661267            $parent_id = $this->callback_forumid( $row->meta_value );
    1267             $this->wpdb->query( 'UPDATE ' . $this->wpdb->posts . ' SET post_parent = "' . $parent_id . '" WHERE ID = "' . $row->value_id . '" LIMIT 1' );
     1268            $this->wpdb->query( $this->wpdb->prepare( "UPDATE {$this->wpdb->posts} SET post_parent = %d WHERE ID = %d LIMIT 1", $parent_id, $row->value_id ) );
    12681269            $has_update = true;
    12691270        }
     
    12861287
    12871288        if ( ! empty( $this->sync_table ) ) {
    1288             $query = 'SELECT value_id, meta_value FROM '            . $this->sync_table_name . ' WHERE meta_key = "_bbp_old_sticky_status_id" AND meta_value = "sticky" LIMIT ' . $start . ', ' . $this->max_rows;
     1289            $query = $this->wpdb->prepare( "SELECT value_id, meta_value FROM {$this->sync_table_name} WHERE meta_key = %s AND meta_value = %s LIMIT {$start}, {$this->max_rows}", '_bbp_old_sticky_status_id', 'sticky' );
    12891290        } else {
    1290             $query = 'SELECT post_id AS value_id, meta_value FROM ' . $this->wpdb->postmeta  . ' WHERE meta_key = "_bbp_old_sticky_status_id" AND meta_value = "sticky" LIMIT ' . $start . ', ' . $this->max_rows;
     1291            $query = $this->wpdb->prepare( "SELECT post_id AS value_id, meta_value FROM {$this->wpdb->postmeta} WHERE meta_key = %s AND meta_value = %s LIMIT {$start}, {$this->max_rows}", '_bbp_old_sticky_status_id', 'sticky' );
    12911292        }
    12921293
     
    13171318
    13181319        if ( ! empty( $this->sync_table ) ) {
    1319             $query = 'SELECT value_id, meta_value FROM '            . $this->sync_table_name . ' WHERE meta_key = "_bbp_old_sticky_status_id" AND meta_value = "super-sticky" LIMIT ' . $start . ', ' . $this->max_rows;
     1320            $query = $this->wpdb->prepare( "SELECT value_id, meta_value FROM {$this->sync_table_name} WHERE meta_key = %s AND meta_value = %s LIMIT {$start}, {$this->max_rows}", '_bbp_old_sticky_status_id', 'super-sticky' );
    13201321        } else {
    1321             $query = 'SELECT post_id AS value_id, meta_value FROM ' . $this->wpdb->postmeta  . ' WHERE meta_key = "_bbp_old_sticky_status_id" AND meta_value = "super-sticky" LIMIT ' . $start . ', ' . $this->max_rows;
     1322            $query = $this->wpdb->prepare( "SELECT post_id AS value_id, meta_value FROM {$this->wpdb->postmeta} WHERE meta_key = %s AND meta_value = %s LIMIT {$start}, {$this->max_rows}", '_bbp_old_sticky_status_id', 'super-sticky' );
    13221323        }
    13231324
     
    13481349
    13491350        if ( ! empty( $this->sync_table ) ) {
    1350             $query = 'SELECT value_id, meta_value FROM ' . $this->sync_table_name           . ' WHERE meta_key = "_bbp_old_closed_status_id" AND meta_value = "closed" LIMIT ' . $start . ', ' . $this->max_rows;
     1351            $query = $this->wpdb->prepare( "SELECT value_id, meta_value FROM {$this->sync_table_name} WHERE meta_key = %s AND meta_value = %s LIMIT {$start}, {$this->max_rows}", '_bbp_old_closed_status_id', 'closed' );
    13511352        } else {
    1352             $query = 'SELECT post_id AS value_id, meta_value FROM ' . $this->wpdb->postmeta . ' WHERE meta_key = "_bbp_old_closed_status_id" AND meta_value = "closed" LIMIT ' . $start . ', ' . $this->max_rows;
     1353            $query = $this->wpdb->prepare( "SELECT post_id AS value_id, meta_value FROM {$this->wpdb->postmeta} WHERE meta_key = %s AND meta_value = %s LIMIT {$start}, {$this->max_rows}", '_bbp_old_closed_status_id', 'closed' );
    13531354        }
    13541355
     
    13751376
    13761377        if ( ! empty( $this->sync_table ) ) {
    1377             $query = 'SELECT value_id, meta_value FROM ' . $this->sync_table_name . ' WHERE meta_key = "_bbp_old_reply_to_id" AND meta_value > 0 LIMIT ' . $start . ', ' . $this->max_rows;
     1378            $query = $this->wpdb->prepare( "SELECT value_id, meta_value FROM {$this->sync_table_name} WHERE meta_key = %s AND meta_value > 0 LIMIT {$start}, {$this->max_rows}", '_bbp_old_reply_to_id' );
    13781379        } else {
    1379             $query = 'SELECT post_id AS value_id, meta_value FROM ' . $this->wpdb->postmeta . ' WHERE meta_key = "_bbp_old_reply_to_id" AND meta_value > 0 LIMIT ' . $start . ', ' . $this->max_rows;
     1380            $query = $this->wpdb->prepare( "SELECT post_id AS value_id, meta_value FROM {$this->wpdb->postmeta} WHERE meta_key = %s AND meta_value > 0 LIMIT {$start}, {$this->max_rows}", '_bbp_old_reply_to_id' );
    13801381        }
    13811382
     
    13861387        foreach ( (array) $reply_to_array as $row ) {
    13871388            $reply_to = $this->callback_reply_to( $row->meta_value );
    1388             $this->wpdb->query( 'UPDATE ' . $this->wpdb->postmeta . ' SET meta_value = "' . $reply_to . '" WHERE meta_key = "_bbp_reply_to" AND post_id = "' . $row->value_id . '" LIMIT 1' );
     1389            $this->wpdb->query( $this->wpdb->prepare( "UPDATE {$this->wpdb->postmeta} SET meta_value = %s WHERE meta_key = %s AND post_id = %d LIMIT 1", $reply_to, '_bbp_reply_to', $row->value_id ) );
    13891390            $has_update = true;
    13901391        }
     
    14051406
    14061407        if ( ! empty( $this->sync_table ) ) {
    1407             $query = 'SELECT sync_table1.value_id AS topic_id, sync_table1.meta_value AS topic_is_anonymous, sync_table2.meta_value AS topic_author
    1408                             FROM       ' . $this->sync_table_name . ' AS sync_table1
    1409                             INNER JOIN ' . $this->sync_table_name . ' AS sync_table2
     1408            $query = $this->wpdb->prepare( "SELECT sync_table1.value_id AS topic_id, sync_table1.meta_value AS topic_is_anonymous, sync_table2.meta_value AS topic_author
     1409                            FROM {$this->sync_table_name} AS sync_table1
     1410                            INNER JOIN {$this->sync_table_name} AS sync_table2
    14101411                            ON ( sync_table1.value_id = sync_table2.value_id )
    1411                             WHERE sync_table1.meta_value =  "true"
    1412                             AND sync_table2.meta_key =  "_bbp_old_topic_author_name_id"
    1413                             LIMIT ' . $start . ', ' . $this->max_rows;
     1412                            WHERE sync_table1.meta_value = %s
     1413                            AND sync_table2.meta_key = %s
     1414                            LIMIT {$start}, {$this->max_rows}", 'true', '_bbp_old_topic_author_name_id' );
    14141415        } else {
    1415             $query = 'SELECT wp_postmeta1.post_id AS topic_id, wp_postmeta1.meta_value AS topic_is_anonymous, wp_postmeta2.meta_value AS topic_author
    1416                             FROM       ' . $this->wpdb->postmeta . ' AS wp_postmeta1
    1417                             INNER JOIN ' . $this->wpdb->postmeta . ' AS wp_postmeta2
     1416            $query = $this->wpdb->prepare( "SELECT wp_postmeta1.post_id AS topic_id, wp_postmeta1.meta_value AS topic_is_anonymous, wp_postmeta2.meta_value AS topic_author
     1417                            FROM {$this->wpdb->postmeta} AS wp_postmeta1
     1418                            INNER JOIN {$this->wpdb->postmeta} AS wp_postmeta2
    14181419                            ON ( wp_postmeta1.post_id = wp_postmeta2.post_id )
    1419                             WHERE wp_postmeta1.meta_value =  "true"
    1420                             AND wp_postmeta2.meta_key =  "_bbp_old_topic_author_name_id"
    1421                             LIMIT ' . $start . ', ' . $this->max_rows;
     1420                            WHERE wp_postmeta1.meta_value = %s
     1421                            AND wp_postmeta2.meta_key = %s
     1422                            LIMIT {$start}, {$this->max_rows}", 'true', '_bbp_old_topic_author_name_id' );
    14221423
    14231424        }
     
    14291430        foreach ( (array) $anonymous_topics as $row ) {
    14301431            $anonymous_topic_author_id = 0;
    1431             $this->wpdb->query( 'UPDATE ' . $this->wpdb->posts . ' SET post_author = "' . $anonymous_topic_author_id . '" WHERE ID = "' . $row->topic_id . '" LIMIT 1' );
     1432            $this->wpdb->query( $this->wpdb->prepare( "UPDATE {$this->wpdb->posts} SET post_author = %d WHERE ID = %d LIMIT 1", $anonymous_topic_author_id, $row->topic_id ) );
    14321433
    14331434            add_post_meta( $row->topic_id, '_bbp_anonymous_name', $row->topic_author );
     
    14511452
    14521453        if ( ! empty( $this->sync_table ) ) {
    1453             $query = 'SELECT sync_table1.value_id AS reply_id, sync_table1.meta_value AS reply_is_anonymous, sync_table2.meta_value AS reply_author
    1454                             FROM       ' . $this->sync_table_name . ' AS sync_table1
    1455                             INNER JOIN ' . $this->sync_table_name . ' AS sync_table2
     1454            $query = $this->wpdb->prepare( "SELECT sync_table1.value_id AS reply_id, sync_table1.meta_value AS reply_is_anonymous, sync_table2.meta_value AS reply_author
     1455                            FROM {$this->sync_table_name} AS sync_table1
     1456                            INNER JOIN {$this->sync_table_name} AS sync_table2
    14561457                            ON ( sync_table1.value_id = sync_table2.value_id )
    1457                             WHERE sync_table1.meta_value =  "true"
    1458                             AND sync_table2.meta_key =  "_bbp_old_reply_author_name_id"
    1459                             LIMIT ' . $start . ', ' . $this->max_rows;
     1458                            WHERE sync_table1.meta_value = %s
     1459                            AND sync_table2.meta_key = %s
     1460                            LIMIT {$start}, {$this->max_rows}", 'true', '_bbp_old_reply_author_name_id' );
    14601461        } else {
    1461             $query = 'SELECT wp_postmeta1.post_id AS reply_id, wp_postmeta1.meta_value AS reply_is_anonymous, wp_postmeta2.meta_value AS reply_author
    1462                             FROM       ' . $this->wpdb->postmeta . ' AS wp_postmeta1
    1463                             INNER JOIN ' . $this->wpdb->postmeta . ' AS wp_postmeta2
     1462            $query = $this->wpdb->prepare( "SELECT wp_postmeta1.post_id AS reply_id, wp_postmeta1.meta_value AS reply_is_anonymous, wp_postmeta2.meta_value AS reply_author
     1463                            FROM {$this->wpdb->postmeta} AS wp_postmeta1
     1464                            INNER JOIN {$this->wpdb->postmeta} AS wp_postmeta2
    14641465                            ON ( wp_postmeta1.post_id = wp_postmeta2.post_id )
    1465                             WHERE wp_postmeta1.meta_value =  "true"
    1466                             AND wp_postmeta2.meta_key =  "_bbp_old_reply_author_name_id"
    1467                             LIMIT ' . $start . ', ' . $this->max_rows;
     1466                            WHERE wp_postmeta1.meta_value = %s
     1467                            AND wp_postmeta2.meta_key = %s
     1468                            LIMIT {$start}, {$this->max_rows}", 'true', '_bbp_old_reply_author_name_id' );
    14681469
    14691470        }
     
    14751476        foreach ( (array) $anonymous_replies as $row ) {
    14761477            $anonymous_reply_author_id = 0;
    1477             $this->wpdb->query( 'UPDATE ' . $this->wpdb->posts . ' SET post_author = "' . $anonymous_reply_author_id . '" WHERE ID = "' . $row->reply_id . '" LIMIT 1' );
     1478            $this->wpdb->query( $this->wpdb->prepare( "UPDATE {$this->wpdb->posts} SET post_author = %d WHERE ID = %d LIMIT 1", $anonymous_reply_author_id, $row->reply_id ) );
    14781479
    14791480            add_post_meta( $row->reply_id, '_bbp_anonymous_name', $row->reply_author );
     
    14961497
    14971498        if ( true === $this->sync_table ) {
    1498             $query = 'SELECT value_id FROM ' . $this->sync_table_name . ' INNER JOIN ' . $this->wpdb->posts . ' ON(value_id = ID) WHERE meta_key LIKE "_bbp_%" AND value_type = "post" GROUP BY value_id ORDER BY value_id DESC LIMIT ' . $this->max_rows;
     1499            $query = $this->wpdb->prepare( "SELECT value_id FROM {$this->sync_table_name} INNER JOIN {$this->wpdb->posts} ON(value_id = ID) WHERE meta_key LIKE '_bbp_%' AND value_type = %s GROUP BY value_id ORDER BY value_id DESC LIMIT {$this->max_rows}", 'post' );
    14991500        } else {
    1500             $query = 'SELECT post_id AS value_id FROM ' . $this->wpdb->postmeta . ' WHERE meta_key LIKE "_bbp_%" GROUP BY post_id ORDER BY post_id DESC LIMIT ' . $this->max_rows;
     1501            $query = $this->wpdb->prepare( "SELECT post_id AS value_id FROM {$this->wpdb->postmeta} WHERE meta_key LIKE '_bbp_%' GROUP BY post_id ORDER BY post_id DESC LIMIT {$this->max_rows}" );
    15011502        }
    15021503
     
    15151516
    15161517        if ( true === $this->sync_table ) {
    1517             $query = 'SELECT value_id FROM ' . $this->sync_table_name . ' INNER JOIN ' . $this->wpdb->users . ' ON(value_id = ID) WHERE meta_key = "_bbp_old_user_id" AND value_type = "user" LIMIT ' . $this->max_rows;
     1518            $query = $this->wpdb->prepare( "SELECT value_id FROM {$this->sync_table_name} INNER JOIN {$this->wpdb->users} ON(value_id = ID) WHERE meta_key = %s AND value_type = %s LIMIT {$this->max_rows}", '_bbp_old_user_id', 'user' );
    15181519        } else {
    1519             $query = 'SELECT user_id AS value_id FROM ' . $this->wpdb->usermeta . ' WHERE meta_key = "_bbp_old_user_id" LIMIT ' . $this->max_rows;
     1520            $query = $this->wpdb->prepare( "SELECT user_id AS value_id FROM {$this->wpdb->usermeta} WHERE meta_key = %s LIMIT {$this->max_rows}", '_bbp_old_user_id' );
    15201521        }
    15211522
     
    15481549        /** Delete bbconverter passwords **************************************/
    15491550
    1550         $query       = 'SELECT user_id, meta_value FROM ' . $this->wpdb->usermeta . ' WHERE meta_key = "_bbp_password" LIMIT ' . $start . ', ' . $this->max_rows;
     1551        $query       = $this->wpdb->prepare( "SELECT user_id, meta_value FROM {$this->wpdb->usermeta} WHERE meta_key = %s LIMIT {$start}, {$this->max_rows}", '_bbp_password' );
    15511552        update_option( '_bbp_converter_query', $query );
    15521553
     
    15571558            foreach ( $bbconverter as $value ) {
    15581559                if ( is_serialized( $value['meta_value'] ) ) {
    1559                     $this->wpdb->query( 'UPDATE ' . $this->wpdb->users . ' ' . 'SET user_pass = "" ' . 'WHERE ID = "' . $value['user_id'] . '"' );
    1560                 } else {
    1561                     $this->wpdb->query( 'UPDATE ' . $this->wpdb->users . ' ' . 'SET user_pass = "' . $value['meta_value'] . '" ' . 'WHERE ID = "' . $value['user_id'] . '"' );
    1562                     $this->wpdb->query( 'DELETE FROM ' . $this->wpdb->usermeta . ' WHERE meta_key = "_bbp_password" AND user_id = "' . $value['user_id'] . '"' );
     1560                    $this->wpdb->query( $this->wpdb->prepare( "UPDATE {$this->wpdb->users} SET user_pass = '' WHERE ID = %d", $value['user_id'] ) );
     1561                } else {
     1562                    $this->wpdb->query( $this->wpdb->prepare( "UPDATE {$this->wpdb->users} SET user_pass = %s WHERE ID = %d", $value['meta_value'], $value['user_id'] ) );
     1563                    $this->wpdb->query( $this->wpdb->prepare( "DELETE FROM {$this->wpdb->usermeta} WHERE meta_key = %s AND user_id = %d", '_bbp_password', $value['user_id'] ) );
    15631564                }
    15641565            }
     
    16131614     */
    16141615    public function callback_pass( $username, $password ) {
    1615         $user = $this->wpdb->get_row( $this->wpdb->prepare( 'SELECT * FROM ' . $this->wpdb->users . ' WHERE user_login = "%s" AND user_pass = "" LIMIT 1', $username ) );
     1616        $user = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT * FROM {$this->wpdb->users} WHERE user_login = %s AND user_pass = '' LIMIT 1", $username ) );
    16161617        if ( ! empty( $user ) ) {
    1617             $usermeta = $this->wpdb->get_row( 'SELECT * FROM ' . $this->wpdb->usermeta . ' WHERE meta_key = "_bbp_password" AND user_id = "' . $user->ID . '" LIMIT 1' );
     1618            $usermeta = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT * FROM {$this->wpdb->usermeta} WHERE meta_key = %s AND user_id = %d LIMIT 1", '_bbp_password', $user->ID ) );
    16181619
    16191620            if ( ! empty( $usermeta ) ) {
    16201621                if ( $this->authenticate_pass( $password, $usermeta->meta_value ) ) {
    1621                     $this->wpdb->query( 'UPDATE ' . $this->wpdb->users . ' ' . 'SET user_pass = "' . wp_hash_password( $password ) . '" ' . 'WHERE ID = "' . $user->ID . '"' );
    1622                     $this->wpdb->query( 'DELETE FROM ' . $this->wpdb->usermeta . ' WHERE meta_key = "_bbp_password" AND user_id = "' . $user->ID . '"' );
     1622                    $this->wpdb->query( $this->wpdb->prepare( "UPDATE {$this->wpdb->users} SET user_pass = %s WHERE ID = %d", wp_hash_password( $password ), $user->ID ) );
     1623                    $this->wpdb->query( $this->wpdb->prepare( "DELETE FROM {$this->wpdb->usermeta} WHERE meta_key = %s AND user_id = %d", '_bbp_password', $user->ID ) );
    16231624                }
    16241625            }
     
    16351636        if ( ! isset( $this->map_forumid[ $field ] ) ) {
    16361637            if ( ! empty( $this->sync_table ) ) {
    1637                 $row = $this->wpdb->get_row( $this->wpdb->prepare( 'SELECT value_id, meta_value FROM ' . $this->sync_table_name . ' WHERE meta_key = "_bbp_old_forum_id" AND meta_value = "%s" LIMIT 1', $field ) );
     1638                $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT value_id, meta_value FROM {$this->sync_table_name} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_forum_id', $field ) );
    16381639            } else {
    1639                 $row = $this->wpdb->get_row( $this->wpdb->prepare( 'SELECT post_id AS value_id FROM '  . $this->wpdb->postmeta  . ' WHERE meta_key = "_bbp_old_forum_id" AND meta_value = "%s" LIMIT 1', $field ) );
     1640                $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT post_id AS value_id FROM {$this->wpdb->postmeta} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_forum_id', $field ) );
    16401641            }
    16411642
     
    16581659        if ( ! isset( $this->map_topicid[ $field ] ) ) {
    16591660            if ( ! empty( $this->sync_table ) ) {
    1660                 $row = $this->wpdb->get_row( $this->wpdb->prepare( 'SELECT value_id, meta_value FROM ' . $this->sync_table_name . ' WHERE meta_key = "_bbp_old_topic_id" AND meta_value = "%s" LIMIT 1', $field ) );
     1661                $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT value_id, meta_value FROM {$this->sync_table_name} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_topic_id', $field ) );
    16611662            } else {
    1662                 $row = $this->wpdb->get_row( $this->wpdb->prepare( 'SELECT post_id AS value_id FROM '  . $this->wpdb->postmeta  . ' WHERE meta_key = "_bbp_old_topic_id" AND meta_value = "%s" LIMIT 1', $field ) );
     1663                $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT post_id AS value_id FROM {$this->wpdb->postmeta} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_topic_id', $field ) );
    16631664            }
    16641665
     
    16831684        if ( ! isset( $this->map_reply_to[ $field ] ) ) {
    16841685            if ( ! empty( $this->sync_table ) ) {
    1685                 $row = $this->wpdb->get_row( $this->wpdb->prepare( 'SELECT value_id, meta_value FROM ' . $this->sync_table_name . ' WHERE meta_key = "_bbp_old_reply_id" AND meta_value = "%s" LIMIT 1', $field ) );
     1686                $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT value_id, meta_value FROM {$this->sync_table_name} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_reply_id', $field ) );
    16861687            } else {
    1687                 $row = $this->wpdb->get_row( $this->wpdb->prepare( 'SELECT post_id AS value_id FROM '  . $this->wpdb->postmeta  . ' WHERE meta_key = "_bbp_old_reply_id" AND meta_value = "%s" LIMIT 1', $field ) );
     1688                $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT post_id AS value_id FROM {$this->wpdb->postmeta} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_reply_id', $field ) );
    16881689            }
    16891690
     
    17061707        if ( ! isset( $this->map_userid[ $field ] ) ) {
    17071708            if ( ! empty( $this->sync_table ) ) {
    1708                 $row = $this->wpdb->get_row( $this->wpdb->prepare( 'SELECT value_id, meta_value FROM ' . $this->sync_table_name . ' WHERE meta_key = "_bbp_old_user_id" AND meta_value = "%s" LIMIT 1', $field ) );
     1709                $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT value_id, meta_value FROM {$this->sync_table_name} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_user_id', $field ) );
    17091710            } else {
    1710                 $row = $this->wpdb->get_row( $this->wpdb->prepare( 'SELECT user_id AS value_id FROM ' . $this->wpdb->usermeta . ' WHERE meta_key = "_bbp_old_user_id" AND meta_value = "%s" LIMIT 1', $field ) );
     1711                $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT user_id AS value_id FROM {$this->wpdb->usermeta} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_user_id', $field ) );
    17111712            }
    17121713
     
    17541755            $this->map_topicid_to_forumid[ $topicid ] = 0;
    17551756        } elseif ( ! isset( $this->map_topicid_to_forumid[ $topicid ] ) ) {
    1756             $row = $this->wpdb->get_row( 'SELECT post_parent FROM ' . $this->wpdb->posts . ' WHERE ID = "' . $topicid . '" LIMIT 1' );
     1757            $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT post_parent FROM {$this->wpdb->posts} WHERE ID = %d LIMIT 1", $topicid ) );
    17571758
    17581759            if ( !is_null( $row ) ) {
  • trunk/src/includes/admin/converters/e107v1.php

    r5951 r6191  
    577577        if ( ! isset( $this->map_userid[ $field ] ) ) {
    578578            if ( ! empty( $this->sync_table ) ) {
    579                 $row = $this->wpdb->get_row( $this->wpdb->prepare( 'SELECT value_id, meta_value FROM ' . $this->sync_table_name . ' WHERE meta_key = "_bbp_old_user_id" AND meta_value = "%s" LIMIT 1', $field ) );
     579                $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT value_id, meta_value FROM {$this->sync_table_name} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_user_id', $field ) );
    580580            } else {
    581                 $row = $this->wpdb->get_row( $this->wpdb->prepare( 'SELECT user_id AS value_id FROM ' . $this->wpdb->usermeta . ' WHERE meta_key = "_bbp_old_user_id" AND meta_value = "%s" LIMIT 1', $field ) );
     581                $row = $this->wpdb->get_row( $this->wpdb->prepare( "SELECT user_id AS value_id FROM {$this->wpdb->usermeta} WHERE meta_key = %s AND meta_value = %s LIMIT 1", '_bbp_old_user_id', $field ) );
    582582            }
    583583
  • trunk/src/includes/admin/tools.php

    r6189 r6191  
    10901090                WHERE `topics`.`post_type` = '{$tpt}'
    10911091                    AND `topics`.`post_status` IN ( '{$pps}', '{$cps}' )
    1092                 GROUP BY `topics`.`ID`);";
     1092                GROUP BY `topics`.`ID`)";
    10931093
    10941094    if ( is_wp_error( $bbp_db->query( $sql ) ) ) {
     
    11191119    $result    = __( 'Failed!', 'bbpress' );
    11201120
    1121     $sql_delete = "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` = '_bbp_voice_count';";
     1121    $sql_delete = "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` = '_bbp_voice_count'";
    11221122    if ( is_wp_error( $bbp_db->query( $sql_delete ) ) ) {
    11231123        return array( 1, sprintf( $statement, $result ) );
     
    11391139                    AND `posts`.`post_status` IN ( '{$pps}', '{$cps}' )
    11401140                    AND `posts`.`post_author` != '0'
    1141                 GROUP BY `postmeta`.`meta_value`);";
     1141                GROUP BY `postmeta`.`meta_value`)";
    11421142
    11431143    if ( is_wp_error( $bbp_db->query( $sql ) ) ) {
     
    11681168    $result    = __( 'Failed!', 'bbpress' );
    11691169
    1170     $sql_delete = "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` = '_bbp_reply_count_hidden';";
     1170    $sql_delete = "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` = '_bbp_reply_count_hidden'";
    11711171    if ( is_wp_error( $bbp_db->query( $sql_delete ) ) ) {
    11721172        return array( 1, sprintf( $statement, $result ) );
     
    11791179    $pps = bbp_get_pending_status_id();
    11801180
    1181     $sql = "INSERT INTO `{$bbp_db->postmeta}` (`post_id`, `meta_key`, `meta_value`) (SELECT `post_parent`, '_bbp_reply_count_hidden', COUNT(`post_status`) as `meta_value` FROM `{$bbp_db->posts}` WHERE `post_type` = '{$rpt}' AND `post_status` IN ( '{$tps}', '{$sps}', '{$pps}' ) GROUP BY `post_parent`);";
     1181    $sql = "INSERT INTO `{$bbp_db->postmeta}` (`post_id`, `meta_key`, `meta_value`) (SELECT `post_parent`, '_bbp_reply_count_hidden', COUNT(`post_status`) as `meta_value` FROM `{$bbp_db->posts}` WHERE `post_type` = '{$rpt}' AND `post_status` IN ( '{$tps}', '{$sps}', '{$pps}' ) GROUP BY `post_parent`)";
    11821182    if ( is_wp_error( $bbp_db->query( $sql ) ) ) {
    11831183        return array( 2, sprintf( $statement, $result ) );
     
    12161216                                        AND `forummeta`.`meta_key` = '_bbp_old_forum_id'
    12171217                                WHERE `forum`.`post_type` = '" . bbp_get_forum_post_type() . "'
    1218                                 GROUP BY `forum`.`ID`;" );
     1218                                GROUP BY `forum`.`ID`" );
    12191219
    12201220    // Bail if forum IDs returned an error
     
    12351235
    12361236        // Attempt to update group meta
    1237         $updated = $bbp_db->query( "UPDATE `{$groups_meta_table}` SET `meta_value` = '{$group_forums->ID}' WHERE `meta_key` = 'forum_id' AND `meta_value` = '{$group_forums->meta_value}';" );
     1237        $updated = $bbp_db->query( "UPDATE `{$groups_meta_table}` SET `meta_value` = '{$group_forums->ID}' WHERE `meta_key` = 'forum_id' AND `meta_value` = '{$group_forums->meta_value}'" );
    12381238
    12391239        // Bump the count
     
    12431243
    12441244        // Update group to forum relationship data
    1245         $group_id = (int) $bbp_db->get_var( "SELECT `group_id` FROM `{$groups_meta_table}` WHERE `meta_key` = 'forum_id' AND `meta_value` = '{$group_forums->ID}';" );
     1245        $group_id = (int) $bbp_db->get_var( "SELECT `group_id` FROM `{$groups_meta_table}` WHERE `meta_key` = 'forum_id' AND `meta_value` = '{$group_forums->ID}'" );
    12461246        if ( ! empty( $group_id ) ) {
    12471247
     
    12501250
    12511251            // Get the group status
    1252             $group_status = $bbp_db->get_var( "SELECT `status` FROM `{$groups_table}` WHERE `id` = '{$group_id}';" );
     1252            $group_status = $bbp_db->get_var( "SELECT `status` FROM `{$groups_table}` WHERE `id` = '{$group_id}'" );
    12531253
    12541254            // Sync up forum visibility based on group status
     
    13431343    $result    = __( 'Failed!', 'bbpress' );
    13441344
    1345     $sql_delete = "DELETE FROM {$bbp_db->postmeta} WHERE meta_key IN ( '_bbp_topic_count', '_bbp_total_topic_count', '_bbp_topic_count_hidden' );";
     1345    $sql_delete = "DELETE FROM {$bbp_db->postmeta} WHERE meta_key IN ( '_bbp_topic_count', '_bbp_total_topic_count', '_bbp_topic_count_hidden' )";
    13461346    if ( is_wp_error( $bbp_db->query( $sql_delete ) ) ) {
    13471347        return array( 1, sprintf( $statement, $result ) );
     
    14251425    $result      = __( 'Failed!', 'bbpress' );
    14261426
    1427     $sql_select  = "SELECT `post_author`, COUNT(DISTINCT `ID`) as `_count` FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_topic_post_type() . "' AND `post_status` = '" . bbp_get_public_status_id() . "' GROUP BY `post_author`;";
     1427    $sql_select  = "SELECT `post_author`, COUNT(DISTINCT `ID`) as `_count` FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_topic_post_type() . "' AND `post_status` = '" . bbp_get_public_status_id() . "' GROUP BY `post_author`";
    14281428    $insert_rows = $bbp_db->get_results( $sql_select );
    14291429
     
    14421442    }
    14431443
    1444     $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}';";
     1444    $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}'";
    14451445    if ( is_wp_error( $bbp_db->query( $sql_delete ) ) ) {
    14461446        return array( 3, sprintf( $statement, $result ) );
     
    14491449    foreach ( array_chunk( $insert_values, 10000 ) as $chunk ) {
    14501450        $chunk = "\n" . implode( ",\n", $chunk );
    1451         $sql_insert = "INSERT INTO `{$bbp_db->usermeta}` (`user_id`, `meta_key`, `meta_value`) VALUES {$chunk};";
     1451        $sql_insert = "INSERT INTO `{$bbp_db->usermeta}` (`user_id`, `meta_key`, `meta_value`) VALUES {$chunk}";
    14521452
    14531453        if ( is_wp_error( $bbp_db->query( $sql_insert ) ) ) {
     
    14771477    $result      = __( 'Failed!', 'bbpress' );
    14781478
    1479     $sql_select  = "SELECT `post_author`, COUNT(DISTINCT `ID`) as `_count` FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_reply_post_type() . "' AND `post_status` = '" . bbp_get_public_status_id() . "' GROUP BY `post_author`;";
     1479    $sql_select  = "SELECT `post_author`, COUNT(DISTINCT `ID`) as `_count` FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_reply_post_type() . "' AND `post_status` = '" . bbp_get_public_status_id() . "' GROUP BY `post_author`";
    14801480    $insert_rows = $bbp_db->get_results( $sql_select );
    14811481
     
    14941494    }
    14951495
    1496     $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}';";
     1496    $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}'";
    14971497    if ( is_wp_error( $bbp_db->query( $sql_delete ) ) ) {
    14981498        return array( 3, sprintf( $statement, $result ) );
     
    15011501    foreach ( array_chunk( $insert_values, 10000 ) as $chunk ) {
    15021502        $chunk = "\n" . implode( ",\n", $chunk );
    1503         $sql_insert = "INSERT INTO `{$bbp_db->usermeta}` (`user_id`, `meta_key`, `meta_value`) VALUES {$chunk};";
     1503        $sql_insert = "INSERT INTO `{$bbp_db->usermeta}` (`user_id`, `meta_key`, `meta_value`) VALUES {$chunk}";
    15041504
    15051505        if ( is_wp_error( $bbp_db->query( $sql_insert ) ) ) {
     
    15301530
    15311531    $key       = $bbp_db->prefix . '_bbp_favorites';
    1532     $users     = $bbp_db->get_results( "SELECT `user_id`, `meta_value` AS `favorites` FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}';" );
     1532    $users     = $bbp_db->get_results( "SELECT `user_id`, `meta_value` AS `favorites` FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}'" );
    15331533
    15341534    if ( is_wp_error( $users ) ) {
     
    15361536    }
    15371537
    1538     $topics = $bbp_db->get_col( "SELECT `ID` FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_topic_post_type() . "' AND `post_status` = '" . bbp_get_public_status_id() . "';" );
     1538    $topics = $bbp_db->get_col( "SELECT `ID` FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_topic_post_type() . "' AND `post_status` = '" . bbp_get_public_status_id() . "'" );
    15391539
    15401540    if ( is_wp_error( $topics ) ) {
     
    15651565    }
    15661566
    1567     $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}';";
     1567    $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}'";
    15681568    if ( is_wp_error( $bbp_db->query( $sql_delete ) ) ) {
    15691569        return array( 4, sprintf( $statement, $result ) );
     
    15721572    foreach ( array_chunk( $values, 10000 ) as $chunk ) {
    15731573        $chunk = "\n" . implode( ",\n", $chunk );
    1574         $sql_insert = "INSERT INTO `{$bbp_db->usermeta}` (`user_id`, `meta_key`, `meta_value`) VALUES {$chunk};";
     1574        $sql_insert = "INSERT INTO `{$bbp_db->usermeta}` (`user_id`, `meta_key`, `meta_value`) VALUES {$chunk}";
    15751575        if ( is_wp_error( $bbp_db->query( $sql_insert ) ) ) {
    15761576            return array( 5, sprintf( $statement, $result ) );
     
    16001600
    16011601    $key       = $bbp_db->prefix . '_bbp_subscriptions';
    1602     $users     = $bbp_db->get_results( "SELECT `user_id`, `meta_value` AS `subscriptions` FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}';" );
     1602    $users     = $bbp_db->get_results( "SELECT `user_id`, `meta_value` AS `subscriptions` FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}'" );
    16031603
    16041604    if ( is_wp_error( $users ) ) {
     
    16061606    }
    16071607
    1608     $topics = $bbp_db->get_col( "SELECT `ID` FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_topic_post_type() . "' AND `post_status` = '" . bbp_get_public_status_id() . "';" );
     1608    $topics = $bbp_db->get_col( "SELECT `ID` FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_topic_post_type() . "' AND `post_status` = '" . bbp_get_public_status_id() . "'" );
    16091609    if ( is_wp_error( $topics ) ) {
    16101610        return array( 2, sprintf( $statement, $result ) );
     
    16341634    }
    16351635
    1636     $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}';";
     1636    $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}'";
    16371637    if ( is_wp_error( $bbp_db->query( $sql_delete ) ) ) {
    16381638        return array( 4, sprintf( $statement, $result ) );
     
    16411641    foreach ( array_chunk( $values, 10000 ) as $chunk ) {
    16421642        $chunk = "\n" . implode( ",\n", $chunk );
    1643         $sql_insert = "INSERT INTO `{$bbp_db->usermeta}` (`user_id`, `meta_key`, `meta_value`) VALUES {$chunk};";
     1643        $sql_insert = "INSERT INTO `{$bbp_db->usermeta}` (`user_id`, `meta_key`, `meta_value`) VALUES {$chunk}";
    16441644        if ( is_wp_error( $bbp_db->query( $sql_insert ) ) ) {
    16451645            return array( 5, sprintf( $statement, $result ) );
     
    16691669
    16701670    $key       = $bbp_db->prefix . '_bbp_forum_subscriptions';
    1671     $users     = $bbp_db->get_results( "SELECT `user_id`, `meta_value` AS `subscriptions` FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}';" );
     1671    $users     = $bbp_db->get_results( "SELECT `user_id`, `meta_value` AS `subscriptions` FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}'" );
    16721672
    16731673    if ( is_wp_error( $users ) ) {
     
    16751675    }
    16761676
    1677     $forums = $bbp_db->get_col( "SELECT `ID` FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_forum_post_type() . "' AND `post_status` = '" . bbp_get_public_status_id() . "';" );
     1677    $forums = $bbp_db->get_col( "SELECT `ID` FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_forum_post_type() . "' AND `post_status` = '" . bbp_get_public_status_id() . "'" );
    16781678    if ( is_wp_error( $forums ) ) {
    16791679        return array( 2, sprintf( $statement, $result ) );
     
    17031703    }
    17041704
    1705     $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}';";
     1705    $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` = '{$key}'";
    17061706    if ( is_wp_error( $bbp_db->query( $sql_delete ) ) ) {
    17071707        return array( 4, sprintf( $statement, $result ) );
     
    17101710    foreach ( array_chunk( $values, 10000 ) as $chunk ) {
    17111711        $chunk = "\n" . implode( ",\n", $chunk );
    1712         $sql_insert = "INSERT INTO `{$bbp_db->usermeta}` (`user_id`, `meta_key`, `meta_value`) VALUES {$chunk};";
     1712        $sql_insert = "INSERT INTO `{$bbp_db->usermeta}` (`user_id`, `meta_key`, `meta_value`) VALUES {$chunk}";
    17131713        if ( is_wp_error( $bbp_db->query( $sql_insert ) ) ) {
    17141714            return array( 5, sprintf( $statement, $result ) );
     
    18011801
    18021802    // First, delete everything.
    1803     if ( is_wp_error( $bbp_db->query( "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` IN ( '_bbp_last_reply_id', '_bbp_last_topic_id', '_bbp_last_active_id', '_bbp_last_active_time' );" ) ) ) {
     1803    if ( is_wp_error( $bbp_db->query( "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` IN ( '_bbp_last_reply_id', '_bbp_last_topic_id', '_bbp_last_active_id', '_bbp_last_active_time' )" ) ) ) {
    18041804        return array( 1, sprintf( $statement, $result ) );
    18051805    }
     
    18161816            FROM `{$bbp_db->posts}` AS `topic` INNER JOIN `{$bbp_db->posts}` AS `reply` ON `topic`.`ID` = `reply`.`post_parent`
    18171817            WHERE `reply`.`post_status` = '{$pps}' AND `topic`.`post_type` = '{$tpt}' AND `reply`.`post_type` = '{$rpt}'
    1818             GROUP BY `topic`.`ID` );" ) ) ) {
     1818            GROUP BY `topic`.`ID` )" ) ) ) {
    18191819        return array( 2, sprintf( $statement, $result ) );
    18201820    }
     
    18251825            FROM `{$bbp_db->posts}` AS `topic` LEFT JOIN `{$bbp_db->postmeta}` AS `reply`
    18261826            ON `topic`.`ID` = `reply`.`post_id` AND `reply`.`meta_key` = '_bbp_last_reply_id'
    1827             WHERE `reply`.`meta_id` IS NULL AND `topic`.`post_type` = '{$tpt}' );" ) ) ) {
     1827            WHERE `reply`.`meta_id` IS NULL AND `topic`.`post_type` = '{$tpt}' )" ) ) ) {
    18281828        return array( 3, sprintf( $statement, $result ) );
    18291829    }
     
    18341834            FROM `{$bbp_db->posts}` AS `forum` INNER JOIN `{$bbp_db->posts}` AS `topic` ON `forum`.`ID` = `topic`.`post_parent`
    18351835            WHERE `topic`.`post_status` = '{$pps}' AND `forum`.`post_type` = '{$fpt}' AND `topic`.`post_type` = '{$tpt}'
    1836             GROUP BY `forum`.`ID` );" ) ) ) {
     1836            GROUP BY `forum`.`ID` )" ) ) ) {
    18371837        return array( 4, sprintf( $statement, $result ) );
    18381838    }
     
    18431843            FROM `{$bbp_db->posts}` AS `forum` LEFT JOIN `{$bbp_db->postmeta}` AS `topic`
    18441844            ON `forum`.`ID` = `topic`.`post_id` AND `topic`.`meta_key` = '_bbp_last_topic_id'
    1845             WHERE `topic`.`meta_id` IS NULL AND `forum`.`post_type` = '{$fpt}' );" ) ) ) {
     1845            WHERE `topic`.`meta_id` IS NULL AND `forum`.`post_type` = '{$fpt}' )" ) ) ) {
    18461846        return array( 5, sprintf( $statement, $result ) );
    18471847    }
     
    18521852            FROM `{$bbp_db->posts}` AS `topic` INNER JOIN `{$bbp_db->posts}` AS `reply` ON `topic`.`ID` = `reply`.`post_parent`
    18531853            WHERE `reply`.`post_status` = '{$pps}' AND `topic`.`post_type` = '{$tpt}' AND `reply`.`post_type` = '{$rpt}'
    1854             GROUP BY `topic`.`ID` );" ) ) ) {
     1854            GROUP BY `topic`.`ID` )" ) ) ) {
    18551855        return array( 6, sprintf( $statement, $result ) );
    18561856    }
     
    18611861            FROM `{$bbp_db->posts}` AS `topic` LEFT JOIN `{$bbp_db->postmeta}` AS `reply`
    18621862            ON `topic`.`ID` = `reply`.`post_id` AND `reply`.`meta_key` = '_bbp_last_active_id'
    1863             WHERE `reply`.`meta_id` IS NULL AND `topic`.`post_type` = '{$tpt}' );" ) ) ) {
     1863            WHERE `reply`.`meta_id` IS NULL AND `topic`.`post_type` = '{$tpt}' )" ) ) ) {
    18641864        return array( 7, sprintf( $statement, $result ) );
    18651865    }
     
    18701870            FROM `{$bbp_db->posts}` AS `topic` INNER JOIN `{$bbp_db->posts}` AS `reply` ON `topic`.`ID` = `reply`.`post_parent`
    18711871            WHERE `reply`.`post_status` = '{$pps}' AND `topic`.`post_type` = '{$tpt}' AND `reply`.`post_type` = '{$rpt}'
    1872             GROUP BY `topic`.`ID` );" ) ) ) {
     1872            GROUP BY `topic`.`ID` )" ) ) ) {
    18731873        return array( 8, sprintf( $statement, $result ) );
    18741874    }
     
    18791879            FROM `{$bbp_db->posts}` AS `topic` LEFT JOIN `{$bbp_db->postmeta}` AS `reply`
    18801880            ON `topic`.`ID` = `reply`.`post_id` AND `reply`.`meta_key` = '_bbp_last_active_time'
    1881             WHERE `reply`.`meta_id` IS NULL AND `topic`.`post_type` = '{$tpt}' );" ) ) ) {
     1881            WHERE `reply`.`meta_id` IS NULL AND `topic`.`post_type` = '{$tpt}' )" ) ) ) {
    18821882        return array( 9, sprintf( $statement, $result ) );
    18831883    }
    18841884
    18851885    // Forums need to know what their last active item is as well. Now it gets a bit more complex to do in the database.
    1886     $forums = $bbp_db->get_col( "SELECT `ID` FROM `{$bbp_db->posts}` WHERE `post_type` = '{$fpt}' and `post_status` != 'auto-draft';" );
     1886    $forums = $bbp_db->get_col( "SELECT `ID` FROM `{$bbp_db->posts}` WHERE `post_type` = '{$fpt}' and `post_status` != 'auto-draft'" );
    18871887    if ( is_wp_error( $forums ) ) {
    18881888        return array( 10, sprintf( $statement, $result ) );
     
    19281928    $result    = __( 'Failed!', 'bbpress' );
    19291929
    1930     $forums    = $bbp_db->get_col( "SELECT ID FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_forum_post_type() . "';" );
     1930    $forums    = $bbp_db->get_col( "SELECT ID FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_forum_post_type() . "'" );
    19311931
    19321932    // Bail if no forums found
     
    19971997    $changed       = 0;
    19981998
    1999     $closed_topics = $bbp_db->get_col( "SELECT ID FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_topic_post_type() . "' AND `post_status` = 'closed';" );
     1999    $closed_topics = $bbp_db->get_col( "SELECT ID FROM `{$bbp_db->posts}` WHERE `post_type` = '" . bbp_get_topic_post_type() . "' AND `post_status` = 'closed'" );
    20002000
    20012001    // Bail if no closed topics found
     
    20662066
    20672067    // First, delete everything.
    2068     if ( is_wp_error( $bbp_db->query( "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` = '_bbp_forum_id';" ) ) ) {
     2068    if ( is_wp_error( $bbp_db->query( "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` = '_bbp_forum_id'" ) ) ) {
    20692069        return array( 1, sprintf( $statement, $result ) );
    20702070    }
     
    20802080                AS `topic`
    20812081            WHERE `topic`.`post_type` = '{$tpt}'
    2082             GROUP BY `topic`.`ID` );" ) ) ) {
     2082            GROUP BY `topic`.`ID` )" ) ) ) {
    20832083        return array( 2, sprintf( $statement, $result ) );
    20842084    }
     
    20942094            WHERE `topic`.`post_type` = '{$tpt}'
    20952095                AND `reply`.`post_type` = '{$rpt}'
    2096             GROUP BY `reply`.`ID` );" ) ) ) {
     2096            GROUP BY `reply`.`ID` )" ) ) ) {
    20972097        return array( 3, sprintf( $statement, $result ) );
    20982098    }
     
    21212121
    21222122    // First, delete everything.
    2123     if ( is_wp_error( $bbp_db->query( "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` = '_bbp_topic_id';" ) ) ) {
     2123    if ( is_wp_error( $bbp_db->query( "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` = '_bbp_topic_id'" ) ) ) {
    21242124        return array( 1, sprintf( $statement, $result ) );
    21252125    }
     
    21352135                AS `topic`
    21362136            WHERE `topic`.`post_type` = '{$tpt}'
    2137             GROUP BY `topic`.`ID` );" ) ) ) {
     2137            GROUP BY `topic`.`ID` )" ) ) ) {
    21382138        return array( 3, sprintf( $statement, $result ) );
    21392139    }
     
    21492149            WHERE `topic`.`post_type` = '{$tpt}'
    21502150                AND `reply`.`post_type` = '{$rpt}'
    2151             GROUP BY `reply`.`ID` );" ) ) ) {
     2151            GROUP BY `reply`.`ID` )" ) ) ) {
    21522152        return array( 4, sprintf( $statement, $result ) );
    21532153    }
     
    21762176
    21772177    // Delete cases where `_bbp_reply_to` was accidentally set to itself
    2178     if ( is_wp_error( $bbp_db->query( "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` = '_bbp_reply_to' AND `post_id` = `meta_value`;" ) ) ) {
     2178    if ( is_wp_error( $bbp_db->query( "DELETE FROM `{$bbp_db->postmeta}` WHERE `meta_key` = '_bbp_reply_to' AND `post_id` = `meta_value`" ) ) ) {
    21792179        return array( 1, sprintf( $statement, $result ) );
    21802180    }
     
    21932193                                        ON `a`.`menu_order` = `b`.`menu_order`
    21942194                                        AND `a`.`post_parent` = `b`.`post_parent`
    2195                                         WHERE `post_type` = '{$rpt}';", OBJECT_K );
     2195                                        WHERE `post_type` = '{$rpt}'", OBJECT_K );
    21962196
    21972197    // Bail if no replies returned
     
    22292229    $changed   = $total = 0;
    22302230    $key       = $bbp_db->prefix . '_bbp_favorites';
    2231     $favorites = $bbp_db->get_results( "SELECT * FROM {$bbp_db->usermeta} WHERE meta_key = '{$key}'" );
     2231    $favorites = $bbp_db->get_results( $bbp_db->prepare( "SELECT * FROM {$bbp_db->usermeta} WHERE meta_key = %s", $key ) );
    22322232
    22332233    // Bail if no closed topics found
     
    22922292    $changed       = $total = 0;
    22932293    $key           = $bbp_db->prefix . '_bbp_subscriptions';
    2294     $subscriptions = $bbp_db->get_results( "SELECT * FROM {$bbp_db->usermeta} WHERE meta_key = '{$key}'" );
     2294    $subscriptions = $bbp_db->get_results( $bbp_db->prepare( "SELECT * FROM {$bbp_db->usermeta} WHERE meta_key = %s", $key ) );
    22952295
    22962296    // Bail if no closed topics found
     
    24682468        $statement  = __( 'Deleting Post Meta… %s', 'bbpress' );
    24692469        $sql_meta   = implode( "', '", $sql_meta );
    2470         $sql_delete = "DELETE FROM `{$bbp_db->postmeta}` WHERE `post_id` IN ('{$sql_meta}');";
     2470        $sql_delete = "DELETE FROM `{$bbp_db->postmeta}` WHERE `post_id` IN ('{$sql_meta}')";
    24712471        $result     = is_wp_error( $bbp_db->query( $sql_delete ) ) ? $failed : $success;
    24722472        $messages[] = sprintf( $statement, $result );
     
    24822482        $statement  = __( 'Deleting Post Revisions… %s', 'bbpress' );
    24832483        $sql_meta   = implode( "', '", $sql_meta );
    2484         $sql_delete = "DELETE FROM `{$bbp_db->posts}` WHERE `post_parent` IN ('{$sql_meta}') AND `post_type` = 'revision';";
     2484        $sql_delete = "DELETE FROM `{$bbp_db->posts}` WHERE `post_parent` IN ('{$sql_meta}') AND `post_type` = 'revision'";
    24852485        $result     = is_wp_error( $bbp_db->query( $sql_delete ) ) ? $failed : $success;
    24862486        $messages[] = sprintf( $statement, $result );
     
    24902490
    24912491    $statement  = __( 'Deleting Forum Moderators… %s', 'bbpress' );
    2492     $sql_delete = "DELETE a,b,c FROM `{$bbp_db->terms}` AS a LEFT JOIN `{$bbp_db->term_taxonomy}` AS c ON a.term_id = c.term_id LEFT JOIN `{$bbp_db->term_relationships}` AS b ON b.term_taxonomy_id = c.term_taxonomy_id WHERE c.taxonomy = 'forum-mod';";
     2492    $sql_delete = "DELETE a,b,c FROM `{$bbp_db->terms}` AS a LEFT JOIN `{$bbp_db->term_taxonomy}` AS c ON a.term_id = c.term_id LEFT JOIN `{$bbp_db->term_relationships}` AS b ON b.term_taxonomy_id = c.term_taxonomy_id WHERE c.taxonomy = 'forum-mod'";
    24932493    $result     = is_wp_error( $bbp_db->query( $sql_delete ) ) ? $failed : $success;
    24942494    $messages[] = sprintf( $statement, $result );
     
    24972497
    24982498    $statement  = __( 'Deleting Topic Tags… %s', 'bbpress' );
    2499     $sql_delete = "DELETE a,b,c FROM `{$bbp_db->terms}` AS a LEFT JOIN `{$bbp_db->term_taxonomy}` AS c ON a.term_id = c.term_id LEFT JOIN `{$bbp_db->term_relationships}` AS b ON b.term_taxonomy_id = c.term_taxonomy_id WHERE c.taxonomy = 'topic-tag';";
     2499    $sql_delete = "DELETE a,b,c FROM `{$bbp_db->terms}` AS a LEFT JOIN `{$bbp_db->term_taxonomy}` AS c ON a.term_id = c.term_id LEFT JOIN `{$bbp_db->term_relationships}` AS b ON b.term_taxonomy_id = c.term_taxonomy_id WHERE c.taxonomy = 'topic-tag'";
    25002500    $result     = is_wp_error( $bbp_db->query( $sql_delete ) ) ? $failed : $success;
    25012501    $messages[] = sprintf( $statement, $result );
     
    25132513            $statement  = __( 'Deleting Imported Users… %s', 'bbpress' );
    25142514            $sql_meta   = implode( "', '", $sql_meta );
    2515             $sql_delete = "DELETE FROM `{$bbp_db->users}` WHERE `ID` IN ('{$sql_meta}');";
     2515            $sql_delete = "DELETE FROM `{$bbp_db->users}` WHERE `ID` IN ('{$sql_meta}')";
    25162516            $result     = is_wp_error( $bbp_db->query( $sql_delete ) ) ? $failed : $success;
    25172517            $messages[] = sprintf( $statement, $result );
    25182518            $statement  = __( 'Deleting Imported User Meta… %s', 'bbpress' );
    2519             $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `user_id` IN ('{$sql_meta}');";
     2519            $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `user_id` IN ('{$sql_meta}')";
    25202520            $result     = is_wp_error( $bbp_db->query( $sql_delete ) ) ? $failed : $success;
    25212521            $messages[] = sprintf( $statement, $result );
     
    25252525    // Next, if we still have users that were not imported delete that meta data
    25262526    $statement  = __( 'Deleting User Meta… %s', 'bbpress' );
    2527     $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` LIKE '%%_bbp_%%';";
     2527    $sql_delete = "DELETE FROM `{$bbp_db->usermeta}` WHERE `meta_key` LIKE '%%_bbp_%%'";
    25282528    $result     = is_wp_error( $bbp_db->query( $sql_delete ) ) ? $failed : $success;
    25292529    $messages[] = sprintf( $statement, $result );
  • trunk/src/includes/common/functions.php

    r6141 r6191  
    17581758        $post_status = "'" . implode( "', '", $post_status ) . "'";
    17591759        $bbp_db      = bbp_db();
    1760         $query       = $bbp_db->prepare( "SELECT ID FROM {$bbp_db->posts} WHERE post_parent = %d AND post_status IN ( {$post_status} ) AND post_type = '%s' ORDER BY ID DESC;", $parent_id, $post_type );
     1760        $query       = $bbp_db->prepare( "SELECT ID FROM {$bbp_db->posts} WHERE post_parent = %d AND post_status IN ( {$post_status} ) AND post_type = %s ORDER BY ID DESC", $parent_id, $post_type );
    17611761        $child_ids   = (array) $bbp_db->get_col( $query );
    17621762
  • trunk/src/includes/topics/functions.php

    r6146 r6191  
    27952795        $post_status = "'" . implode( "','", $statuses ) . "'";
    27962796        $bbp_db      = bbp_db();
    2797         $query       = $bbp_db->prepare( "SELECT COUNT(ID) FROM {$bbp_db->posts} WHERE post_parent = %d AND post_status IN ( {$post_status} ) AND post_type = '%s';", $topic_id, bbp_get_reply_post_type() );
     2797        $query       = $bbp_db->prepare( "SELECT COUNT(ID) FROM {$bbp_db->posts} WHERE post_parent = %d AND post_status IN ( {$post_status} ) AND post_type = %s", $topic_id, bbp_get_reply_post_type() );
    27982798        $reply_count = $bbp_db->get_var( $query );
    27992799    }
     
    29702970    // Query the DB to get voices in this topic
    29712971    $bbp_db = bbp_db();
    2972     $query  = $bbp_db->prepare( "SELECT COUNT( DISTINCT post_author ) FROM {$bbp_db->posts} WHERE ( post_parent = %d AND post_status = '%s' AND post_type = '%s' ) OR ( ID = %d AND post_type = '%s' );", $topic_id, bbp_get_public_status_id(), bbp_get_reply_post_type(), $topic_id, bbp_get_topic_post_type() );
     2972    $query  = $bbp_db->prepare( "SELECT COUNT( DISTINCT post_author ) FROM {$bbp_db->posts} WHERE ( post_parent = %d AND post_status = %s AND post_type = %s ) OR ( ID = %d AND post_type = %s )", $topic_id, bbp_get_public_status_id(), bbp_get_reply_post_type(), $topic_id, bbp_get_topic_post_type() );
    29732973    $voices = (int) $bbp_db->get_var( $query );
    29742974
     
    30113011    // Query the DB to get anonymous replies in this topic
    30123012    $bbp_db  = bbp_db();
    3013     $query   = $bbp_db->prepare( "SELECT COUNT( ID ) FROM {$bbp_db->posts} WHERE ( post_parent = %d AND post_status = '%s' AND post_type = '%s' AND post_author = 0 ) OR ( ID = %d AND post_type = '%s' AND post_author = 0 );", $topic_id, bbp_get_public_status_id(), bbp_get_reply_post_type(), $topic_id, bbp_get_topic_post_type() );
     3013    $query   = $bbp_db->prepare( "SELECT COUNT( ID ) FROM {$bbp_db->posts} WHERE ( post_parent = %d AND post_status = %s AND post_type = %s AND post_author = 0 ) OR ( ID = %d AND post_type = %s AND post_author = 0 )", $topic_id, bbp_get_public_status_id(), bbp_get_reply_post_type(), $topic_id, bbp_get_topic_post_type() );
    30143014    $replies = (int) $bbp_db->get_var( $query );
    30153015
  • trunk/src/includes/users/capabilities.php

    r6116 r6191  
    505505
    506506        // Get topics and replies
    507         $query = $bbp_db->prepare( "SELECT ID FROM {$bbp_db->posts} WHERE post_author = %d AND post_status = '%s' AND post_type IN ( {$post_types} )", $user_id, bbp_get_public_status_id() );
     507        $query = $bbp_db->prepare( "SELECT ID FROM {$bbp_db->posts} WHERE post_author = %d AND post_status = %s AND post_type IN ( {$post_types} )", $user_id, bbp_get_public_status_id() );
    508508        $posts = $bbp_db->get_col( $query );
    509509
     
    596596
    597597        // Get topics and replies
    598         $query = $bbp_db->prepare( "SELECT ID FROM {$bbp_db->posts} WHERE post_author = %d AND post_status = '%s' AND post_type IN ( {$post_types} )", $user_id, bbp_get_spam_status_id() );
     598        $query = $bbp_db->prepare( "SELECT ID FROM {$bbp_db->posts} WHERE post_author = %d AND post_status = %s AND post_type IN ( {$post_types} )", $user_id, bbp_get_spam_status_id() );
    599599        $posts = $bbp_db->get_col( $query );
    600600
  • trunk/src/includes/users/functions.php

    r6141 r6191  
    18661866
    18671867    $bbp_db = bbp_db();
    1868     $count  = (int) $bbp_db->get_var( "SELECT COUNT(*)
    1869         FROM {$bbp_db->posts}
    1870         WHERE post_type = '" . bbp_get_topic_post_type() . "'
    1871         AND post_status = '" . bbp_get_closed_status_id() . "'
    1872         AND post_author = $user_id;"
    1873     );
     1868    $count  = (int) $bbp_db->get_var( $bbp_db->prepare(
     1869        "SELECT COUNT(*)
     1870            FROM {$bbp_db->posts}
     1871            WHERE post_type = %s
     1872                AND post_status = %s
     1873                AND post_author = %d"
     1874    ), bbp_get_topic_post_type(), bbp_get_closed_status_id(), $user_id );
    18741875
    18751876    return (int) apply_filters( 'bbp_get_user_closed_topic_count', $count, $user_id );
     
    21852186    // Bail if no user password to convert
    21862187    $bbp_db = bbp_db();
    2187     $query  = $bbp_db->prepare( "SELECT * FROM {$bbp_db->users} INNER JOIN {$bbp_db->usermeta} ON user_id = ID WHERE meta_key = '_bbp_class' AND user_login = '%s' LIMIT 1", $username );
     2188    $query  = $bbp_db->prepare( "SELECT * FROM {$bbp_db->users} INNER JOIN {$bbp_db->usermeta} ON user_id = ID WHERE meta_key = %s AND user_login = %s LIMIT 1", '_bbp_class', $username );
    21882189    $row    = $bbp_db->get_row( $query );
    21892190    if ( empty( $row ) || is_wp_error( $row ) ) {
Note: See TracChangeset for help on using the changeset viewer.