Commit dc25b7e4 authored by Guillaume Perréal's avatar Guillaume Perréal
Browse files

Correction d'un bug de normalisation pour réutiliser les filtres.

No related merge requests found
Showing with 5 additions and 1 deletion
+5 -1
......@@ -86,7 +86,11 @@ class ClassFilterBuilder
$res[$k] = $normalized;
}
}
return empty($res) ? null : $res;
if (empty($res)) {
return null;
}
sort($res);
return $res;
}
return $data;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment