Index: openacs-4/packages/acs-admin/www/users/search.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-admin/www/users/search.tcl,v diff -u -r1.6.10.2 -r1.6.10.3 --- openacs-4/packages/acs-admin/www/users/search.tcl 9 Sep 2013 16:44:17 -0000 1.6.10.2 +++ openacs-4/packages/acs-admin/www/users/search.tcl 1 Oct 2013 07:54:41 -0000 1.6.10.3 @@ -53,14 +53,12 @@ } } else { # from one of the user pages - if { (![info exists email] || $email eq "") && \ - (![info exists last_name] || $last_name eq "") } { + if { $email eq "" && $last_name eq "" } { incr exception_count append exception_text "
  • You must specify either an email address or last name to search for.\n" } - if { [info exists email] && [info exists last_name] && \ - $email ne "" && $last_name ne "" } { + if { $email ne "" && $last_name ne "" } { incr exception_count append exception_text "
  • You can only specify either email or last name, not both.\n" }