refactor: rename array_sort() to avoid function collision (#8494)

This commit is contained in:
Tony Murray
2018-04-01 15:27:41 -05:00
committed by Neil Lathwood
parent d755b8c55e
commit 214472ba89
5 changed files with 28 additions and 28 deletions

View File

@@ -47,7 +47,7 @@ function get_notifications()
$obj = array_merge($obj, $feed);
echo '('.sizeof($obj).')'.PHP_EOL;
}
$obj = array_sort($obj, 'datetime');
$obj = array_sort_by_column($obj, 'datetime');
return $obj;
}