Skip to content

Commit

Permalink
Taglist field will do a case insensitive removal of duplicates.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alistair Kearney authored and Alistair Kearney committed Dec 23, 2009
1 parent 75a01b4 commit 3f26fac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion symphony/lib/toolkit/fields/field.taglist.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ public function processRawFieldData($data, &$status, $simulate=false, $entry_id=

if(empty($data)) return;

$data = General::array_remove_duplicates($data);
// Do a case insensitive removal of duplicates
$data = General::array_remove_duplicates($data, true);

sort($data);

Expand Down

0 comments on commit 3f26fac

Please sign in to comment.