1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-04 13:47:31 +02:00

Bugtracker #3672 - don't allow search on user email

This commit is contained in:
e107steved
2007-09-22 19:48:30 +00:00
parent 34e38396ea
commit f21a9ef9a1

View File

@@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_handlers/search/search_user.php,v $
| $Revision: 1.1.1.1 $
| $Date: 2006-12-02 04:34:05 $
| $Author: mcfly_e107 $
| $Revision: 1.2 $
| $Date: 2007-09-22 19:48:20 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
@@ -27,7 +27,7 @@ if (isset($_GET['time']) && is_numeric($_GET['time'])) {
// basic
$return_fields = 'user_id, user_name, user_email, user_signature, user_join';
$search_fields = array('user_name', 'user_email', 'user_signature');
$search_fields = array('user_name', 'user_signature');
$weights = array('1.2', '0.6', '0.6', '0.6', '0.6');
$no_results = LAN_198;
$where = $advanced_where;