Quote:
Originally Posted by scottct1
How do I just remove ALL signatures from the Registered usergroup?
|
assuming you don't have a table prefix:
PHP Code:
UPDATE usertextfield
JOIN user USING (userid)
SET signature = ''
WHERE usergroupid = 2;
otherwise you'll need to add the prefix before "usertextfield" and "user"
But that should work fine if you're using phpmyadmin