Sorry, I thought this would be an eays fix/hack but I just can't see how to do it (although it's probably staring me in the face...)
The default option in the "Editor style" dropdown list for our News module is "none", with the other option being "BBcode". I need to swap those around (if possible) so that BBcode is the default, any hints?
Try by opening includes/wysiwyg/wysiwyg.inc and around line 70 change function getEditors()
{
$editors = array('' => 'none');
$editors['bbcode'] = 'BBCode';
to function getEditors()
{
$editors = array('bbcode' => 'BBCode');
$editors[''] = 'none';
.:: I met php the 03 December 2003 :: Unforgettable day! ::.
Server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS):
CloudLinux / Apache 2.4 LSAPI / MySQLi 5.6 / PHP 5.6 / DCVS
Thanks Nano - that does indeed swap the order of the two items around in the drop down box but doesn't appear to impact 'none' still being used as the default option when the page is loaded. Is there anything else I can tweak so that the page loads with the BBCode editor active? Thanks in advance