I made a little change in order to add a translation feature (based on post_title).
It's quite simple, just add these lines after "$remove = array();" (l. 745) :
- Code: Select all
$title = qtrans_split($_POST["post_title"]);
foreach($title as $key=>$value) {
if(empty($_POST["qts_".$key."_slug"])) {
$_POST["qts_".$key."_slug"] = $value;
}
}
Hope it will help
