| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public function save_data( $values ) { |
||
| 30 | // The autocomplete select may send JSON arrays in input values. |
||
| 31 | $merged = array_reduce( (array) $values, function ( $carry, $item ) { |
||
| 32 | return array_merge( $carry, mb_split( "\x{2063}", wp_unslash( $item ) ) ); |
||
| 33 | }, array() ); |
||
| 34 | |||
| 35 | parent::save_data( $merged ); |
||
| 36 | } |
||
| 37 | |||
| 59 |