I've just looked at your website and then viewed the source for the main page which shows the double brackets and double v. Looking at the source the code as
Code: Select all
<span style="color: #CC0000">vv4.2.0</span> (<span style="color: #CC0000">(4037)</span>)
The fact that it shows 'vv4.2.0' and '(4037)' means that the PHP code has the variable set with the extra 'v' and brackets already in place. On another page source shows
Code: Select all
<span style="color: #CC0000">v4.2.0</span> (<span style="color: #CC0000">4037</span>)
with no extra 'v' and no brackets '4037' means that the variable value does not have the 'v' and brackets set.
So sorry but the PHP code to set the variable values must be different. PHP is doing what it is told to do and the fault lies elsewhere. There must be different copies of the PHP code being executed. Code is dumb it does exactly what it is told to do!
Make sure you do not have old PHP versions of it lying around.
Stuart