While Hervet would be the man to ask about this, I think I have a hack that will work for you... did it quick, so I don't know if there are other unknown issues (sanitize, etc.).
The only way I can see to get what you want is to:
1. Under Permissions, grant anonymous Submit, Approve & View.
2. In Preferences/Module Settings set: Auto approve news stories without admin intervention? No
3. edit include/storyform.inc.php
Change the
red code below (line 87)
$editor=news_getWysiwygForm(_NW_THESCOOP, 'hometext', $hometext, 15, 60, 'hometext_hidden');
$sform->addElement($editor,true);
//Extra info
//If admin -> if submit privilege
if ($approveprivilege) {
[color=CC0000]$editor2=news_getWysiwygForm(_AM_EXTEXT, 'bodytext', $bodytext, 15, 60, 'bodytext_hidden');
$sform->addElement($editor2,false);[/color]
To this:
$editor=news_getWysiwygForm(_NW_THESCOOP, 'hometext', $hometext, 15, 60, 'hometext_hidden');
$sform->addElement($editor,true);
[color=CC0000]$editor2=news_getWysiwygForm(_AM_EXTEXT, 'bodytext', $bodytext, 15, 60, 'bodytext_hidden');
$sform->addElement($editor2,true);[/color]
//Extra info
//If admin -> if submit privilege
if ($approveprivilege) {
Note, we just moved it out of the if statement it was in & changed the false parameter to true.
You can change the other missing features the same way if you need them.