Skip to:
Content

bbPress.org

Changeset 6041


Ignore:
Timestamp:
05/31/2016 05:32:15 AM (10 years ago)
Author:
netweb
Message:

Importers: In BBP_Converter_Base::convert_table() method use isset() rather than ! is_null

Props Offereins
Fixes #2733

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/converter.php

    r5951 r6041  
    10321032                        // Types match and to_fieldname is present. This means
    10331033                        // we have some work to do here.
    1034                         if ( ( $row['to_type'] == $to_type ) && ! is_null( $row['to_fieldname'] ) ) {
     1034                        if ( ( $row['to_type'] == $to_type ) && isset( $row['to_fieldname'] ) ) {
    10351035
    10361036                            // This row has a destination that matches one of the
Note: See TracChangeset for help on using the changeset viewer.