Skip to:
Content

bbPress.org

Ticket #2265: wordpress->WordPress.patch

File wordpress->WordPress.patch, 4.6 KB (added by fanquake, 13 years ago)
  • includes/admin/converter.php

     
    383383                                                }
    384384                                        } else {
    385385                                                update_option( '_bbp_converter_start', $max + 1 );
    386                                                 $this->converter_output( sprintf( __( 'Delete users wordpress default passwords (%1$s - %2$s)', 'bbpress' ), $min, $max ) );
     386                                                $this->converter_output( sprintf( __( 'Delete users WordPress default passwords (%1$s - %2$s)', 'bbpress' ), $min, $max ) );
    387387                                        }
    388388                                } else {
    389389                                        update_option( '_bbp_converter_step',  $step + 1 );
     
    529529        protected $field_map = array();
    530530
    531531        /**
    532          * @var object This is the connection to the wordpress datbase.
     532         * @var object This is the connection to the WordPress datbase.
    533533         */
    534534        protected $wpdb;
    535535
  • includes/admin/converters/Example.php

     
    312312        /**
    313313         * This method is to save the salt and password together.  That
    314314         * way when we authenticate it we can get it out of the database
    315          * as one value. Array values are auto sanitized by wordpress.
     315         * as one value. Array values are auto sanitized by WordPress.
    316316         */
    317317        public function callback_savepass( $field, $row )
    318318        {
  • includes/admin/converters/Invision.php

     
    506506        /**
    507507         * This method is to save the salt and password together.  That
    508508         * way when we authenticate it we can get it out of the database
    509          * as one value. Array values are auto sanitized by wordpress.
     509         * as one value. Array values are auto sanitized by WordPress.
    510510         */
    511511        public function callback_savepass( $field, $row ) {
    512512                return array( 'hash' => $field, 'salt' => $row['members_pass_salt'] );
  • includes/admin/converters/Mingle.php

     
    406406        /**
    407407         * This method is to save the salt and password together. That
    408408         * way when we authenticate it we can get it out of the database
    409          * as one value. Array values are auto sanitized by wordpress.
     409         * as one value. Array values are auto sanitized by WordPress.
    410410         */
    411411        public function callback_savepass( $field, $row ) {
    412412                return false;
  • includes/admin/converters/SimplePress5.php

     
    440440        /**
    441441         * This method is to save the salt and password together. That
    442442         * way when we authenticate it we can get it out of the database
    443          * as one value. Array values are auto sanitized by wordpress.
     443         * as one value. Array values are auto sanitized by WordPress.
    444444         */
    445445        public function callback_savepass( $field, $row ) {
    446446                return false;
  • includes/admin/converters/Vanilla.php

     
    518518        /**
    519519         * This method is to save the salt and password together. That
    520520         * way when we authenticate it we can get it out of the database
    521          * as one value. Array values are auto sanitized by wordpress.
     521         * as one value. Array values are auto sanitized by WordPress.
    522522         */
    523523        public function callback_savepass( $field, $row ) {
    524524                return false;
  • includes/admin/converters/bbPress1.php

     
    545545        /**
    546546         * This method is to save the salt and password together. That
    547547         * way when we authenticate it we can get it out of the database
    548          * as one value. Array values are auto sanitized by wordpress.
     548         * as one value. Array values are auto sanitized by WordPress.
    549549         */
    550550        public function callback_savepass( $field, $row ) {
    551551                return false;
  • includes/admin/converters/vBulletin.php

     
    494494        /**
    495495         * This method is to save the salt and password together.  That
    496496         * way when we authenticate it we can get it out of the database
    497          * as one value. Array values are auto sanitized by wordpress.
     497         * as one value. Array values are auto sanitized by WordPress.
    498498         */
    499499        public function callback_savepass( $field, $row ) {
    500500                $pass_array = array( 'hash'      => $field, 'salt'       => $row['salt'] );