doesn't seem that you have updated the readme according to what has been written in this thread.
About the smallfont class on the <div style="padding: 0.5em;" nowrap="nowrap"> etc.
And since my code is:
PHP Code:
<td class="alt2" valign="top" nowrap="nowrap">
<div class="smallfont">
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />
<phrase 1="$pmbox[lastvisitdate]"
then this doesn't make any sence to me:
PHP Code:
<div style="padding: 0.5em;" nowrap="nowrap">
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br />
or this:
PHP Code:
<div style="padding: 0.5em;" nowrap="nowrap">
$ng_greeting<br />
and I tried to replace the
<phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong><br /> with
$ng_greeting<br />, then uploading the plugin.. but all that happened was that my forum shut down and gave me the message:
Quote:
Fatal error: Call to undefined function: bcadd() in /home/virtual/hlforum.net/public_html/global.php(349) : eval()'d code on line 24
|
I've tested this:
PHP Code:
<php
$ng_hour = date('G');
$ng_now = bcadd($ng_hour, 4);
$ng_result = bcadd($ng_now, 5);
?>
..and get no error there.