
08-16-2009, 01:14 AM
|
 |
|
|
Join Date: Dec 2006
Posts: 844
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by GHC Webmaster
Solved this myself, put brackets around the "form = 0 OR form = 6" bit, which makes the complete code edit of memberlist.php for the search function:
FIND line 233 (vB 3.8.1)
Code:
// Process Custom Fields..
$userfields = '';
$profilefields = $db->query_read_slave("
SELECT profilefieldid, type, data, optional, memberlist, searchable
FROM " . TABLE_PREFIX . "profilefield
WHERE form = 0 "
REPLACE WITH
Code:
// Process Custom Fields.. EDITED
$userfields = '';
$profilefields = $db->query_read_slave("
SELECT profilefieldid, type, data, optional, memberlist, searchable
FROM " . TABLE_PREFIX . "profilefield
WHERE form = 0 OR form = 6"
FIND line 905 (vB 3.8.1)
Code:
// get extra profile fields
$profilefields = $db->query_read_slave("
SELECT *
FROM " . TABLE_PREFIX . "profilefield
WHERE searchable = 1
AND form = 0
REPLACE WITH
Code:
// get extra profile fields.. Edited
$profilefields = $db->query_read_slave("
SELECT *
FROM " . TABLE_PREFIX . "profilefield
WHERE searchable = 1
AND (form = 0 OR form = 6)
|
Does this code edit make the fields we had marked searchable and onces we do not mark not searchable? The wording in not clear to me.
I need fields I move to this mods new page to be searchable if I set them that way.
Thanks!
|