OK, first try, no workie.
All links parse with Full WYSIWYG Editing, no matter what checkbox says.
I switched to Basic editor and got this error:
Quote:
Fatal error: Call to undefined function: stripos() in /home/testforum/includes/functions_newpost.php on line 137
|
So I searched, found, and added this vbulletin function above Kirby's new function to get the basic editor WORKING CORRECTLY!!
line 1922-1938 of class_bbcode.php
PHP Code:
if (!function_exists('stripos'))
{
/**
* Case-insensitive version of strpos(). Defined if it does not exist.
*
* @param string Text to search for
* @param string Text to search in
* @param int Position to start search at
*
* @param int|false Position of text if found, false otherwise
*/
function stripos($haystack, $needle, $offset = 0)
{
$foundstring = stristr(substr($haystack, $offset), $needle);
return $foundstring === false ? false : strlen($haystack) - strlen($foundstring);
}
}
The Full Editor still parses all links but I'm still playing.

I believe we need to play with the 'function parse_wysiwyg_anchor'.