From: diml Date: Sat, 10 May 2008 14:01:20 +0000 (+0000) Subject: fixes MDL-14775 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=de10ccbe76dedd7f0508909021dde3b6b28e61b9;p=moodle.git fixes MDL-14775 --- 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') ); }