The last message did not seem to include the attachments - attempt two:
--------------------editor.htmlarea2.php code follows ---------------------
<?php
// $Id: editor.htmlarea2.php,v 1.6 2004/02/18 20:12:51 ronbakker Exp $
/**
* Handler for htmlarea2
* @package Mambo Open Source
* @Copyright (C) 2000 - 2004 Miro International Pty Ltd
* @ All rights reserved
* @ Mambo Open Source is Free Software
* @ Released under GNU/GPL License :
http://www.gnu.org/copyleft/gpl.html
* @version $Revision: 1.6 $
**/
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
function initEditor() {
global $mosConfig_live_site;
?>
<script language="JavaScript1.2" type="text/JavaScript1.2">
<!--
_editor_url = 'editor/htmlarea2/'; // URL to htmlarea files
var win_ie_ver = parseFloat(navigator.appVersion.split("MSIE")[1]);
if (navigator.userAgent.indexOf('Mac') >= 0) { win_ie_ver = 0; }
if (navigator.userAgent.indexOf('Windows CE') >= 0) { win_ie_ver = 0; }
if (navigator.userAgent.indexOf('Opera') >= 0) { win_ie_ver = 0; }
if (win_ie_ver >= 5.5) {
document.write('<scr' + 'ipt src="' +_editor_url+ 'editor.js"');
document.write(' language="Javascript1.2"></scr' + 'ipt>');
} else {
document.write('<scr'+'ipt>function editor_generate() { return false; }</scr'+'ipt>');
}
//-->
</script>
<?php
}
function editorArea( $name, $content, $hiddenField, $width, $height, $col, $row ) {
?>
<textarea name="<?php echo $hiddenField; ?>" id="<?php echo $hiddenField; ?>" cols="<?php echo $col; ?>" rows="<?php echo $row; ?>" style="width:<?php echo $width; ?>; height:<?php echo $height; ?>"><?php echo $content; ?></textarea>
<script language="JavaScript1.2" defer="defer">
<!--
editor_generate('<?php echo $hiddenField ?>');
//-->
</script>
<?php
}
function getEditorContents( $editorArea, $hiddenField ) {
}
?>
----------------------------------- end ------------------------------
-------------------- editor.php code follows --------------------------
<?php
// $Id: editor.php,v 1.4 2003/09/26 08:51:51 rcastley Exp $
/**
* Editor handler
* @package Mambo Open Source
* @Copyright (C) 2000 - 2003 Miro International Pty Ltd
* @ All rights reserved
* @ Mambo Open Source is Free Software
* @ Released under GNU/GPL License :
http://www.gnu.org/copyleft/gpl.html
* @version $Revision: 1.4 $
**/
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
$mosConfig_editor = strtolower( @$mosConfig_editor );
if (file_exists( "$mosConfig_absolute_path/editor/editor.$mosConfig_editor.php" ))
{
require_once( "$mosConfig_absolute_path/editor/editor.$mosConfig_editor.php" );
}
else
{
require_once( "$mosConfig_absolute_path/editor/editor.htmlarea2.php" );
}
?>
----------------------------- end -------------------------------------