Ticket #2265: wordpress->WordPress.patch
| File wordpress->WordPress.patch, 4.6 KB (added by , 13 years ago) |
|---|
-
includes/admin/converter.php
383 383 } 384 384 } else { 385 385 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 ) ); 387 387 } 388 388 } else { 389 389 update_option( '_bbp_converter_step', $step + 1 ); … … 529 529 protected $field_map = array(); 530 530 531 531 /** 532 * @var object This is the connection to the wordpress datbase.532 * @var object This is the connection to the WordPress datbase. 533 533 */ 534 534 protected $wpdb; 535 535 -
includes/admin/converters/Example.php
312 312 /** 313 313 * This method is to save the salt and password together. That 314 314 * 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. 316 316 */ 317 317 public function callback_savepass( $field, $row ) 318 318 { -
includes/admin/converters/Invision.php
506 506 /** 507 507 * This method is to save the salt and password together. That 508 508 * 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. 510 510 */ 511 511 public function callback_savepass( $field, $row ) { 512 512 return array( 'hash' => $field, 'salt' => $row['members_pass_salt'] ); -
includes/admin/converters/Mingle.php
406 406 /** 407 407 * This method is to save the salt and password together. That 408 408 * 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. 410 410 */ 411 411 public function callback_savepass( $field, $row ) { 412 412 return false; -
includes/admin/converters/SimplePress5.php
440 440 /** 441 441 * This method is to save the salt and password together. That 442 442 * 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. 444 444 */ 445 445 public function callback_savepass( $field, $row ) { 446 446 return false; -
includes/admin/converters/Vanilla.php
518 518 /** 519 519 * This method is to save the salt and password together. That 520 520 * 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. 522 522 */ 523 523 public function callback_savepass( $field, $row ) { 524 524 return false; -
includes/admin/converters/bbPress1.php
545 545 /** 546 546 * This method is to save the salt and password together. That 547 547 * 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. 549 549 */ 550 550 public function callback_savepass( $field, $row ) { 551 551 return false; -
includes/admin/converters/vBulletin.php
494 494 /** 495 495 * This method is to save the salt and password together. That 496 496 * 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. 498 498 */ 499 499 public function callback_savepass( $field, $row ) { 500 500 $pass_array = array( 'hash' => $field, 'salt' => $row['salt'] );