PDA

View Full Version : Change default value of "Automatically parse links in text" checkbox


Jakeman
03-07-2004, 06:05 PM
Re: http://www.vbulletin.com/forum/showthread.php?t=97092

How do I change default value for Automatically parse links in text in all places (newpost/reply/pm) ?

newthread.php. Find this code and replace HTML_CHECKED with '' (two single quotes):

// auto-parse URL
if (!isset($checked['parseurl']))
{
$checked['parseurl'] = HTML_CHECKED;
}

Note: in RC4 (currently the latest version) the above code is bugged and looks like this:

if (!$checked['parseurl'])
{
$checked['parseurl'] = HTML_CHECKED;
}

This will be fixed in the next version. In the meantime you should change the code to look like the first code block, then make the changes.

newreply.php. Find this code and replace HTML_CHECKED with '' (two single quotes):

// auto-parse URL
if (!isset($checked['parseurl']))
{
$checked['parseurl'] = HTML_CHECKED;
}

private.php. Find this code. Change 'parseurl' => true, to 'parseurl' => false,:

construct_checkboxes(array(
'savecopy' => true,
'parseurl' => true,
'signature' => iif($bbuserinfo['signature'] !== '', true)
));

Mr Blunt
03-26-2004, 07:31 AM
This same edit should work for editpost.php as well??
I tried it and it appears to be working for me at the moment.
Yes?? No??

Also I figured this might be a good thread to link to for those who read this thread.
SloppyGoat says that according to the vB team, the WYSIWYG will always parse, so it'll have to be a hack, apparently. So if anyones reading this cause of the WYSIWYG acting weird with parses, now you know.

https://vborg.vbsupport.ru/showthread.php?t=59701