]> git.mjollnir.org Git - moodle.git/commitdiff
fixes MDL-14775
authordiml <diml>
Sat, 10 May 2008 14:01:20 +0000 (14:01 +0000)
committerdiml <diml>
Sat, 10 May 2008 14:01:20 +0000 (14:01 +0000)
search/documents/user_document.php

index 99f07b0c3a29d7c9537d9b523a07017b4abcc852..668f87c2022ec68487e4f0d4b7d9ac95bdc9ed8f 100644 (file)
@@ -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')
     );
 }