Changeset 6898
- Timestamp:
- 01/31/2019 09:11:21 PM (3 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/common/functions.php
r6881 r6898 1029 1029 } 1030 1030 1031 // Bail if importing 1032 if ( defined( 'WP_IMPORTING' ) && WP_IMPORTING ) { 1033 return false; 1034 } 1035 1031 1036 /** Validation ************************************************************/ 1032 1037 … … 1183 1188 // Bail if subscriptions are turned off 1184 1189 if ( ! bbp_is_subscriptions_active() ) { 1190 return false; 1191 } 1192 1193 // Bail if importing 1194 if ( defined( 'WP_IMPORTING' ) && WP_IMPORTING ) { 1185 1195 return false; 1186 1196 }
Note: See TracChangeset
for help on using the changeset viewer.