I think I got this one nipped. Before installing open up system/expressionengine/modules/rte/models/rte_toolset_model.php and look for this line of code around line 284:
$this->rte_tool_model->load_tools_into_db();Replace that line with this block:
$tool_names = array('Blockquote', 'Bold', 'Headings', 'Image', 'Italic',
'Link', 'Ordered List', 'Strip Tags', 'Underline', 'Unordered List',
'View Source');
// Load all available tools
foreach ($tool_names as $tool)
{
$this->db->insert(
'rte_tools',
array(
'name' => $tool,
'class' => ucfirst(strtolower(str_replace(' ', '_', $tool))).'_rte',
'enabled' => 'y'
)
);
}Wes
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.