### Eclipse Workspace Patch 1.0
#P 19stable
Index: user/filters/lib.php
===================================================================
RCS file: /cvsroot/moodle/moodle/user/filters/lib.php,v
retrieving revision 1.1.2.3
diff -u -r1.1.2.3 lib.php
--- user/filters/lib.php	17 Aug 2008 22:33:04 -0000	1.1.2.3
+++ user/filters/lib.php	26 Aug 2008 20:20:48 -0000
@@ -35,7 +35,7 @@
         if (empty($fieldnames)) {
             $fieldnames = array('realname'=>0, 'lastname'=>1, 'firstname'=>1, 'email'=>1, 'city'=>1, 'country'=>1,
                                 'confirmed'=>1, 'profile'=>1, 'courserole'=>1, 'systemrole'=>1,
-                                'firstaccess'=>1, 'lastaccess'=>1, 'lastlogin'=>1, 'username'=>1, 'auth'=>1, 'mnethostid'=>1);
+                                'firstaccess'=>1, 'lastaccess'=>1, 'lastlogin'=>1, 'timemodified'=>1, 'username'=>1, 'auth'=>1, 'mnethostid'=>1);
         }
 
         $this->_fields  = array();
@@ -111,6 +111,7 @@
             case 'firstaccess': return new user_filter_date('firstaccess', get_string('firstaccess', 'filters'), $advanced, 'firstaccess');
             case 'lastaccess':  return new user_filter_date('lastaccess', get_string('lastaccess'), $advanced, 'lastaccess');
             case 'lastlogin':   return new user_filter_date('lastlogin', get_string('lastlogin'), $advanced, 'lastlogin');
+            case 'timemodified': return new user_filter_date('timemodified', get_string('lastmodified'), $advanced, 'timemodified');
             case 'auth':
                 $plugins = get_list_of_plugins('auth');
                 $choices = array();

