
11-12-2005, 01:42 PM
|
|
|
Join Date: Oct 2005
Posts: 56
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Paul M
There are table prefixes in the WHERE clause (which shouldn't be there).
In the manageActivation.php file
This line ;
PHP Code:
WHERE " . TABLE_PREFIX . "user.usergroupid = 3 AND " . TABLE_PREFIX . "user.posts = 0
Should be this ;
PHP Code:
WHERE user.usergroupid = 3 AND user.posts = 0

|
WoooW It's working now. Tanx alot.
|