1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 01:25:01 +02:00

Notice removal and default styling fixes.

This commit is contained in:
Cameron
2012-12-16 14:28:30 -08:00
parent 4bd6cd3dee
commit f63fcb61a8
11 changed files with 114 additions and 85 deletions

View File

@@ -50,11 +50,17 @@ if (!function_exists('multiarray_sort')) {
{
($order=='asc')? asort($sort_values) : arsort($sort_values);
}
else
elseif(isset($sort_values))
{
$case ? natsort($sort_values) : natcasesort($sort_values);
if($order != 'asc') $sort_values = array_reverse($sort_values, true);
}
if(!isset($sort_values))
{
return;
}
reset ($sort_values);
while (list ($arr_key, $arr_val) = each ($sort_values))