Hallo Elke,
soweit ich weiß (will nichts falsches erzählen?) geht das nicht ohne Anpassungen.
Vielleicht hilft Dir folgende Modifikation (Achtung: Vorher immer Sicherungskopie, habe die Modifikation nicht getestet!):
Suche in modules/Submit_News/index.php:
$qry = "insert into " . $prefix . "_queue
(uid,uname,subject,story,storyext,timestamp,topic,alanguage) values
(" . intval($uid) . ", '" . mxAddSlashesForSQL(strip_tags($name)) . "', '" . mxAddSlashesForSQL(strip_tags($title)) . "', '" . mxAddSlashesForSQL($hometext) . "', '" . mxAddSlashesForSQL($bodytext) . "', now(), " . intval($topic) . ", '" . mxAddSlashesForSQL(strip_tags($alanguage)) . "')";
Ersetze durch:
$qry = "INSERT INTO ".$prefix."_stories
SET
catid='".intval($topic)."',
title='".mxAddSlashesForSQL(strip_tags($title))."',
time='".mxAddSlashesForSQL(strip_tags(date('Y-n-j h:i:s')))."',
hometext='".mxAddSlashesForSQL($hometext)."',
bodytext='".mxAddSlashesForSQL($bodytext)."',
topic='".intval($topic)."',
informant='".mxAddSlashesForSQL(strip_tags($name))."',
alanguage='".mxAddSlashesForSQL(strip_tags($alanguage))."'
";
Bei catid bin ich mir nicht sicher,
(@Andi:) ich glaube die Auswahl fehlt im PMX!mfg