From 66190b17877a09be27f8c641bf267b334f9bbdae Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 26 Jan 2004 19:22:22 +0000 Subject: - Patch #5393 by Goba: changes the search hook return value, and requires an array containing two elements, the first being the requested title, and the second being the result list. Advantages: * Cleaner search code in common.inc * Po extraction is possible and works fine * No hardcoded exceptions for node and comment modules, since any module can return results in order of relevance (or another order) --- modules/user/user.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/user/user.module') diff --git a/modules/user/user.module b/modules/user/user.module index 68c2b6eb7..79f490ad5 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -300,7 +300,7 @@ function user_search($keys) { while ($account = db_fetch_object($result)) { $find[] = array("title" => $account->name, "link" => (strstr(request_uri(), "admin") ? url("admin/user/edit/$account->uid") : url("user/view/$account->uid")), "user" => $account->name); } - return $find; + return array(t("Matching users"), $find); } function user_block($op = "list", $delta = 0) { -- cgit v1.2.3