Changeset 4824
- Timestamp:
- 03/26/2013 01:31:12 AM (13 years ago)
- Location:
- trunk/includes/admin
- Files:
-
- 8 edited
-
converter.php (modified) (2 diffs)
-
converters/Example.php (modified) (1 diff)
-
converters/Invision.php (modified) (1 diff)
-
converters/Mingle.php (modified) (1 diff)
-
converters/SimplePress5.php (modified) (1 diff)
-
converters/Vanilla.php (modified) (1 diff)
-
converters/bbPress1.php (modified) (1 diff)
-
converters/vBulletin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/admin/converter.php
r4770 r4824 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 { … … 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; -
trunk/includes/admin/converters/Example.php
r3966 r4824 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 ) -
trunk/includes/admin/converters/Invision.php
r4725 r4824 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 ) { -
trunk/includes/admin/converters/Mingle.php
r4733 r4824 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 ) { -
trunk/includes/admin/converters/SimplePress5.php
r4728 r4824 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 ) { -
trunk/includes/admin/converters/Vanilla.php
r4733 r4824 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 ) { -
trunk/includes/admin/converters/bbPress1.php
r4743 r4824 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 ) { -
trunk/includes/admin/converters/vBulletin.php
r4730 r4824 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 ) {
Note: See TracChangeset
for help on using the changeset viewer.