Has I report the original Bug for vBulletin but it is a vBSEO issue.
See it here
Threaded Mode - vBulletin Community Forum - Projects
This is a discussion on Probable Bug in Google Analytis Code within the Bug Reporting forums, part of the vBSEO SEO Plugin category; Has I report the original Bug for vBulletin but it is a vBSEO issue. See it here Threaded Mode - ...
Has I report the original Bug for vBulletin but it is a vBSEO issue.
See it here
Threaded Mode - vBulletin Community Forum - Projects
Hello,
Please try to modify functions_vbseo.php file:
FIND:
REPLACE WITH:PHP Code:if($tmode=='threaded')
PHP Code:if($tmode=='threaded'||$tmode==1)
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Tried, but don't fix
The Java Script Error
'curpostid' not defined
Could you please open a ticket with FTP access and testing forum account for troubleshooting?
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
To get it work the Code should be:
FIND:
REPLACE WITH:PHP Code:if($tmode=='threaded')
PHP Code:if($tmode='threaded'||$tmode=1)
Thanks for posting.
Btw, I won't be affected, as I have disabled the hybrid/threaded views.
@ Threaded Mode - vBulletin Community Forum - Projects
LOL.You will need to harass their developers, or disable the plugin (I don't know which one; wild guess says is certain "SEO" addon) to correct this issue.
Heh
I think that he was only ironic(maybe!)
![]()
if($tmode='threaded'||$tmode=1)
ASSIGNS $tmode to 'threaded', and then to 1
thus the 'if' will always be true
The same result is if using
combined comparison and assignment to $tmode variable, and I think this is better then above solution that I have postedPHP Code:if($tmode=='threaded'||$tmode=1)
Again, that's not really logical.
because you are effectively DEFINEING $tmode, it will ALWAYS be true.
what you have is the same as
if(1)
1 certainly exists.
What you say is probable true, but in that way it works.
Right, it will work for threaded view.
but, are you breaking linear mode because of it?