We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b194740 commit 7d52c06Copy full SHA for 7d52c06
desktop/php/massedit.php
@@ -59,7 +59,7 @@ function scanDB($_table) {
59
}
60
foreach ($items as $item) {
61
$sqlQuery = 'SELECT * FROM `' . $_table . '` WHERE `id` = ' . $item->getId();
62
- $result = DB::prepare($sqlQuery, array('db_name' => $CONFIG['db']['dbname']), DB::FETCH_TYPE_ALL);
+ $result = DB::prepare($sqlQuery, array(), DB::FETCH_TYPE_ALL);
63
foreach ($result[0] as $key => $value) {
64
if ($value == '' || $value == '[]') continue;
65
if (in_array($key, $excludeParams[$_table])) continue;
@@ -192,4 +192,4 @@ function scanDB($_table) {
192
</div>
193
194
195
-<?php include_file('desktop', 'massedit', 'js'); ?>
+<?php include_file('desktop', 'massedit', 'js'); ?>
0 commit comments