fix room delete bug in pentabarf import temporarily

This commit is contained in:
msquare 2016-12-26 19:08:59 +01:00
parent 5f9d508b02
commit 827de98256
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ function prepare_rooms($file) {
$data = read_xml($file);
// Load rooms from db for compare with input
$rooms = sql_select("SELECT * FROM `Room`");
$rooms = sql_select("SELECT * FROM `Room` WHERE `FromPentabarf`='Y'");
$rooms_db = [];
$rooms_import = [];
foreach ($rooms as $room) {