in a 1.0 script with this
It runs in the admin end and is supposed to provide an edit session.
Running the script gives me this error:
"Fatal error: Using $this when not in object context in H:\wwwroot\libraries\joomla\html\editor.php on line 191
"
The script looks like this and I did the import of the editor:
jimport( 'joomla.html.editor' );
$editor =& JFactory::getEditor();
?>
I understand that the error is fired because of the use of "$this" in the editor.php script, but I do not know how to solve this.
So I am really looking for suggestions

