Quote:
Originally Posted by Disasterpiece
I can trump that.
PHP Code:
if (!$totalthreads) $totalthreads = 1;
if (!$totalposts) $totalposts = 1;
PHP Code:
$totalthreads = max($totalthreads,1);
$totalposts = max($totalposts,1);
|
Will you explain the logic behind that? Also, how would you do the following using max?
Code:
if ($vbulletin->options['something_here'] == '') $comma_separated = '0';