- Patch #39875 by chx: make form sorting work with PHP5.

4.7.x
Dries Buytaert 2005-12-05 21:21:49 +00:00
parent c4c5ce122d
commit 0f80b09a4a
1 changed files with 4 additions and 2 deletions

View File

@ -358,10 +358,12 @@ function form_render(&$elements) {
* Function used by uasort in form render to sort form via weight.
*/
function _form_sort($a, $b) {
if ($a['#weight'] == $b['#weight']) {
$a_weight = (is_array($a) && isset($a['#weight'])) ? $a['#weight'] : 0;
$b_weight = (is_array($b) && isset($b['#weight'])) ? $b['#weight'] : 0;
if ($a_weight == $b_weight) {
return 0;
}
return ($a['#weight'] < $b['#weight']) ? -1 : 1;
return ($a_weight < $b_weight) ? -1 : 1;
}
/**