Quote:
Originally Posted by John69Steph
I have the same problem
My post in wordpress is :
Code:
Essai lien : <a href="http://xxx-xxx.net">xxx-xxx</a>
Essai image : <img src="http://www.xxx-xxx.net/relief-bleu/misc/Ban1.png" alt="" />
And when i publish my post and write to Vbulletin, i see that :
Code:
Essai lien : http://ahref>XXX-XXX
Essai image : http://imgsrc alt="" />
What's problem ?
Thank's for your answer
|
here a fix for the ahref problem:
file: wordpress/wp-content/plugins/functions_wysiwyg2.php
find:
Code:
$text = preg_replace('#<script[^>]*>(.*)</script>#siU', '', $text);
add after that:
Code:
$text = str_replace('http://ahref>', '', $text);