@@ -449,12 +449,12 @@ |
||
449 | 449 | } |
450 | 450 | // because array_rand will change numerical (string) values to integer, we have to do this awkward dance |
451 | 451 | foreach ($keysAddSuggsTMP as $key => $item) { |
452 | - $keysAddSuggs[] = (string)$item; |
|
452 | + $keysAddSuggs[] = (string) $item; |
|
453 | 453 | } |
454 | 454 | |
455 | 455 | // iterate suggestions and remove those that which will not be kept |
456 | 456 | foreach ($suggestions['additional'] as $addSuggsKey => $addSuggsVal) { |
457 | - if (!in_array((string)$addSuggsKey, $keysAddSuggs, true)) { |
|
457 | + if (!in_array((string) $addSuggsKey, $keysAddSuggs, true)) { |
|
458 | 458 | unset($suggestions['additional'][$addSuggsKey]); |
459 | 459 | } |
460 | 460 | } |