Order users by name in autocomplete

Change-Id: Iaccbf22d17d4d8483230637709791f7eb71845c4
diff --git a/php/utils.php b/php/utils.php
index 9598a27..57746d2 100644
--- a/php/utils.php
+++ b/php/utils.php
@@ -109,6 +109,7 @@
 		// Prepare the query
 		$query = "SELECT * FROM $usersdb";
 		if ($id > 0) $query .= " WHERE id=".(int)$id;
+		$query .= " ORDER BY nom";
 
 		// Fetch the information of the user
 		if ($result = query($query)) {