changes from live server

main
hecht 11 years ago
parent 850914b13d
commit 4548f2ce5e

@ -177,6 +177,10 @@ function insertItem($userid,$id_db_mix, $anzahl, $startgebot){
}
$anzahl = floor($anzahl);
if($anzahl > 1000) {
return 'Es können nicht mehr als 1000 items gleichzeitig vertickt werden.';
}
preg_replace('#,#','',$id_db_mix); // Entferne die Gefaehrlichen \' !!!
$mix_explode = explode(',',$id_db_mix);

@ -31,7 +31,7 @@ $nachrichten = mysql_query('SELECT * FROM ff11_news order by id DESC LIMIT 10');
?>
<item>
<title><?php echo $row['betreff'].' - Antworten ('.$komments.')'; ?></title>
<title><?php echo preg_replace('#&#', 'und', $row['betreff']).' - Antworten ('.$komments.')'; ?></title>
<link><?php echo $link; ?></link>
<description><?php echo $text; ?></description>
<guid>

Loading…
Cancel
Save