@@ -255,7 +255,7 @@ public function sync( $args, $assoc_args ) {
255
255
256
256
if ( $ args [0 ] === 'all ' ) {
257
257
258
- $ this ->pll ->model ->options ['sync ' ] = array_fill_keys ( array_keys ( $ this ->options_sync ), 1 );
258
+ $ this ->pll ->model ->options ['sync ' ] = array_keys ( $ this ->options_sync );
259
259
260
260
# update options, default category and nav menu locations
261
261
$ this ->pll ->model ->update_default_lang ( $ this ->api ->default_language () );
@@ -277,7 +277,7 @@ public function sync( $args, $assoc_args ) {
277
277
$ settings = (array ) $ this ->pll ->model ->options ['sync ' ];
278
278
279
279
# update current settings
280
- $ settings = array_merge ( $ settings , array_fill_keys ( $ args, 1 ) );
280
+ $ settings = array_merge ( $ settings , $ args );
281
281
282
282
$ this ->pll ->model ->options ['sync ' ] = $ settings ;
283
283
@@ -332,19 +332,20 @@ public function unsync( $args, $assoc_args ) {
332
332
$ args = explode ( ', ' , $ args [0 ] );
333
333
334
334
# validate args
335
- foreach ( $ args as $ key ) {
335
+ foreach ( $ args as $ i => $ key ) {
336
336
if ( ! in_array ( $ key , array_keys ( $ this ->options_sync ) ) ) {
337
- return $ this ->cli ->error ( sprintf ( 'Invalid key: %s ' , $ key ) );
337
+ unset( $ args [$ i ] );
338
+ $ this ->cli ->warning ( sprintf ( 'Invalid key: %s ' , $ key ) );
338
339
}
339
340
}
340
341
341
342
# get current settings
342
343
$ settings = (array ) $ this ->pll ->model ->options ['sync ' ];
343
344
344
345
# update current settings
345
- $ settings = array_diff_key ( $ settings , array_fill_keys ( $ args, 1 ) );
346
+ $ settings = array_diff ( $ settings , $ args );
346
347
347
- $ this ->pll ->model ->options ['sync ' ] = $ settings ;
348
+ $ this ->pll ->model ->options ['sync ' ] = array_values ( $ settings ) ;
348
349
349
350
# update options, default category and nav menu locations
350
351
$ this ->pll ->model ->update_default_lang ( $ this ->api ->default_language () );
0 commit comments