From de10ccbe76dedd7f0508909021dde3b6b28e61b9 Mon Sep 17 00:00:00 2001 From: diml Date: Sat, 10 May 2008 14:01:20 +0000 Subject: [PATCH] fixes MDL-14775 --- search/documents/user_document.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/search/documents/user_document.php b/search/documents/user_document.php index 99f07b0c3a..668f87c202 100644 --- a/search/documents/user_document.php +++ b/search/documents/user_document.php @@ -302,9 +302,9 @@ function user_delete($info, $itemtype) { function user_db_names() { //[primary id], [table name], [time created field name], [time modified field name] [itemtype] [select restriction clause] return array( - array('id', 'user', 'firstaccess', 'timemodified', 'user', ''), - array('id', 'post', 'created', 'lastmodified', 'post', ''), - array('id', 'post', 'created', 'lastmodified', 'attachment', '') + array('id', 'user', 'firstaccess', 'timemodified', 'user'), + array('id', 'post', 'created', 'lastmodified', 'post'), + array('id', 'post', 'created', 'lastmodified', 'attachment') ); } -- 2.39.5