? casetracker_views_filter_assign_to.patch
Index: casetracker.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/casetracker/casetracker.module,v
retrieving revision 1.123.2.14
diff -u -p -r1.123.2.14 casetracker.module
--- casetracker.module	13 Aug 2009 04:48:15 -0000	1.123.2.14
+++ casetracker.module	14 Dec 2009 17:29:26 -0000
@@ -908,7 +908,7 @@ function casetracker_user_options() {
   // if anonymous user is the default assignee, we graft him/her onto the view results here as most views
   // that do any substantive filtering will exclude the anonymous user.
   else if (variable_get('casetracker_default_assign_to', $anon_user) == $anon_user) {
-    array_splice($options, 0, 0, array($anon_user));
+    $options = array($anon_user) + $options;
   }
   return $options;
 }
