summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/files/ajax/rawlist.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/rawlist.php b/apps/files/ajax/rawlist.php
index e51932dff0f..0541353e98a 100644
--- a/apps/files/ajax/rawlist.php
+++ b/apps/files/ajax/rawlist.php
@@ -49,6 +49,6 @@ function cmp($a, $b) {
}
return ($a['name'] < $b['name']) ? -1 : 1;
}
-uasort($files, 'cmp');
+usort($files, 'cmp');
OC_JSON::success(array('data' => $files));