| @@ 18-20 (lines=3) @@ | ||
| 15 | ||
| 16 | // convert list of modules in comma-delimited format into an array |
|
| 17 | // of "$modulename => true" |
|
| 18 | if ( isset( $args['modules'] ) && ! empty( $args['modules'] ) ) { |
|
| 19 | $modules = array_map( '__return_true', array_flip( array_map( 'trim', explode( ',', $args['modules'] ) ) ) ); |
|
| 20 | } |
|
| 21 | ||
| 22 | foreach ( array( 'posts', 'comments', 'users' ) as $module_name ) { |
|
| 23 | if ( 'users' === $module_name && isset( $args[ $module_name ] ) && 'initial' === $args[ $module_name ] ) { |
|
| @@ 2254-2256 (lines=3) @@ | ||
| 2251 | if ( ! empty( $attributes['options'] ) && is_string( $attributes['options'] ) ) { |
|
| 2252 | $attributes['options'] = array_map( 'trim', explode( ',', $attributes['options'] ) ); |
|
| 2253 | ||
| 2254 | if ( ! empty( $attributes['values'] ) && is_string( $attributes['values'] ) ) { |
|
| 2255 | $attributes['values'] = array_map( 'trim', explode( ',', $attributes['values'] ) ); |
|
| 2256 | } |
|
| 2257 | } |
|
| 2258 | ||
| 2259 | if ( $form ) { |
|
| @@ 615-621 (lines=7) @@ | ||
| 612 | Jetpack_Sync_Settings::update_settings( $sync_settings ); |
|
| 613 | ||
| 614 | // Convert comma-delimited string of modules to an array |
|
| 615 | if ( ! empty( $assoc_args['modules'] ) ) { |
|
| 616 | $modules = array_map( 'trim', explode( ',', $assoc_args['modules'] ) ); |
|
| 617 | ||
| 618 | // Convert the array so that the keys are the module name and the value is true to indicate |
|
| 619 | // that we want to sync the module |
|
| 620 | $modules = array_map( '__return_true', array_flip( $modules ) ); |
|
| 621 | } |
|
| 622 | ||
| 623 | foreach ( array( 'posts', 'comments', 'users' ) as $module_name ) { |
|
| 624 | if ( |
|