Hi folks,
I've noticed that if I post a url on my forum with quotes in it, it displays " instead of a ".
For example...
"The Secret Millionaire" (2006)
Ah...I see it does the same here...
Any ideas please?
This is a discussion on Quotes ("") not being rendered correctly in urls within the General Discussion forums, part of the vBSEO SEO Plugin category; Hi folks, I've noticed that if I post a url on my forum with quotes in it, it displays " ...
Hi folks,
I've noticed that if I post a url on my forum with quotes in it, it displays " instead of a ".
For example...
"The Secret Millionaire" (2006)
Ah...I see it does the same here...
Any ideas please?
quotes are NOT valid URL chacters.
HTML URL Encoding Reference
The quotes are not part of the url, they're in the title, and it's not displayed properly, as you can see above.
oh, i read your post wrong....
confirmed on my site too
actualyl no, it's imdb.
view source of their page. they hard coded the html value into it..
Code:<title>"The Secret Millionaire" (2006)</title>
The issue is that they have hex number in entity encoding here.
Please try to modify functions_vbseo_misc.php file:
FIND:
ADD ABOVE:PHP Code:$ptitle = str_replace(
PHP Code:$tmatch[1] = preg_replace('/&#x([a-fA-F0-9]{2});/ue', "'&#'.hexdec('$1').';'", $tmatch[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!