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/XMB.php

    r5951 r6449  
    624624     * converter.
    625625     */
    626     public function info()
    627     {
     626    public function info() {
    628627        return '';
    629628    }
     
    634633     * as one value. Array values are auto sanitized by WordPress.
    635634     */
    636     public function callback_savepass( $field, $row )
    637     {
     635    public function callback_savepass( $field, $row ) {
    638636        $pass_array = array( 'hash' => $field, 'salt' => $row['salt'] );
    639637        return $pass_array;
     
    644642     * to a pass the user has typed in.
    645643     */
    646     public function authenticate_pass( $password, $serialized_pass )
    647     {
     644    public function authenticate_pass( $password, $serialized_pass ) {
    648645        $pass_array = unserialize( $serialized_pass );
    649646        return ( $pass_array['hash'] == md5( md5( $password ). $pass_array['salt'] ) );
Note: See TracChangeset for help on using the changeset viewer.