#323 Do not export downloadPath with image

This commit is contained in:
Ulrich Block 2014-02-11 21:36:41 +01:00
parent 715f515e21
commit 4faa439638

View File

@ -71,7 +71,7 @@ if ($ui->w('action', 4, 'post') and !token(true)) {
foreach ($query->fetchAll(PDO::FETCH_ASSOC) as $row) {
$shorten = $row['shorten'];
foreach ($row as $k => $v) {
if (!in_array($k, array('id', 'resellerid', 'steamVersion'))) {
if (!in_array($k, array('id', 'resellerid', 'steamVersion', 'downloadPath'))) {
$key = $xml->createElement($k, $v);
$element->appendChild($key);
}