Skip to content
This repository has been archived by the owner on Apr 8, 2022. It is now read-only.

Commit

Permalink
fixes MDL-14775
Browse files Browse the repository at this point in the history
  • Loading branch information
diml committed May 10, 2008
1 parent 3e335d5 commit de10ccb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions search/documents/user_document.php
Original file line number Diff line number Diff line change
Expand Up @@ -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')
);
}

Expand Down

0 comments on commit de10ccb

Please sign in to comment.