Skip to:
Content

bbPress.org


Ignore:
Timestamp:
06/01/2017 07:14:43 PM (9 years ago)
Author:
johnjamesjacoby
Message:

Converters: Fix formatting on several converter methods.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/converters/AEF.php

    r5951 r6449  
    571571     * converter.
    572572     */
    573     public function info()
    574     {
     573    public function info() {
    575574        return '';
    576575    }
     
    581580     * as one value. Array values are auto sanitized by WordPress.
    582581     */
    583     public function callback_savepass( $field, $row )
    584     {
     582    public function callback_savepass( $field, $row ) {
    585583        $pass_array = array( 'hash' => $field, 'salt' => $row['salt'] );
    586584        return $pass_array;
     
    591589     * to a pass the user has typed in.
    592590     */
    593     public function authenticate_pass( $password, $serialized_pass )
    594     {
     591    public function authenticate_pass( $password, $serialized_pass ) {
    595592        $pass_array = unserialize( $serialized_pass );
    596593        return ( $pass_array['hash'] == md5( md5( $password ). $pass_array['salt'] ) );
Note: See TracChangeset for help on using the changeset viewer.