Something weird is going on. I don't know if it's a Dreamweaver bug or not, but when I open up functions.php again, that same line 1996 is now
PHP Code:
$ms .= ' <td class="tcat"' . iif($vboptions['allowchangestyles'], '],'],'],' colspan="2"') . '><div class="smallfont">';
The same thing had happened before, so I redid the edits. It keeps happening, though!
1990-2010 are
PHP Code:
$totaltime = vb_number_format($endtime[0] - $starttime[0] + $endtime[1] - $starttime[1], $msdecimal);
$msphp = vb_number_format(((($totaltime - $querytime) / $totaltime) * 100), 2) . '% PHP';
$mssql = vb_number_format((($querytime / $totaltime) * 100), 2) . '% MySQL';
$ms = '<tr align="right">' . "\n";
$ms .= ' <td class="tcat"' . iif($vboptions['allowchangestyles'], '],'],'],' colspan="2"') . '><div class="smallfont">';
$ms .= 'Page generated in ' . $totaltime . ' seconds (' . $msphp . ' - ' . $mssql . ') with ';
$ms .= $query_count . ' queries</div></td>' . "\n";
$ms .= '</tr>' . "\n";
if ($bbuserinfo['usergroupid'] == '6')
{
$mstemplates = '<select size="1" style="font-size: 10px">' . "\n";
if ($_TEMPLATEQUERIES)
{
$mstemplates .= '<option>' . sizeof($_TEMPLATEQUERIES) . ' Uncached Template';
$mstemplates .= iif(sizeof($_TEMPLATEQUERIES) != '1', 's') . '</option>';
if (is_array($tempusagecache))