Quote:
Originally Posted by Boofo
Wouldn't this work just as well?
PHP Code:
if ($bbuserinfo['fieldXX']=="Yes") { $doposts = 'posts = posts,'; } else { $doposts = 'posts = posts + 1,'; }
And can you please make a txt file for those that will need to readd it on an upgrade later? 
|
Well then the following would also work:
PHP Code:
if ($bbuserinfo['fieldXX'] != "Yes")
{
$doposts = 'posts = posts + 1,';
}