! -> Note
$ -> Affected files
+# Fixed problem with multiply zeros a value of option in list selectors
+$ /includes/ui/ui_lists.inc
+
22-Mar-2010 Joe Hunt
+
# Error editing (updating) Account Groups and problem
with "00" == "0" in php.
$ /gl/includes/db/gl_db_account_types.inc
if (get_post($search_button) && ($txt == $value)) {
$selected_id[] = $value;
}
- if (in_array($value, $selected_id)) {
+
+ if (in_array((string)$value, $selected_id, TRUE)) {
$sel = 'selected';
$found = $value;
$edit = $opts['editable'] && $contact_row['editable']