i found where this difference comes ....
global.php at archive .....
in the correct version (3612) from line 126-129 :
we have :
Code:
if (is_array($vbulletin->iforumcache["$parentid"]))
{
foreach($vbulletin->iforumcache["$parentid"] AS $x)
{
but in another version we have an extra line :
Code:
if (is_array($vbulletin->iforumcache["$parentid"]))
{
$output = "\n$indent<ul>\n";
foreach($vbulletin->iforumcache["$parentid"] AS $x)
{
and some next lines too...
i dont know PHP so maybe it is not frome these lines but i can see it is from this file...
i have replaced this 2 files then i could access ( ? ) form of addresses ....
but really if slash form (/) is better i want to have it defult and redirect the old addreses with .htaccess file but i dont know how !
i have attached both global.php and you can test them...
thank you..