Changeset 3394242
- Timestamp:
- 11/12/2025 11:04:01 AM (5 months ago)
- Location:
- interactive-real-estate
- Files:
-
- 2 edited
-
tags/2.0.4/includes/controllers/DataImportExport.php (modified) (2 diffs)
-
trunk/includes/controllers/DataImportExport.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
interactive-real-estate/tags/2.0.4/includes/controllers/DataImportExport.php
r3394128 r3394242 97 97 98 98 99 100 99 $inserted_id = Irep_DB::table($table)->create($row); 101 100 $id_mapping[$table][$old_id] = $inserted_id; … … 140 139 $row = $this->prepare_polygon_svg_data($row, ['follow_link']); 141 140 } 141 142 $typeData = json_decode($row['type'], true); 143 144 $typeData['image_2d'] = []; 145 $typeData['image_3d'] = []; 146 147 $row['type'] = json_encode($typeData); 148 142 149 143 150 $inserted_id = Irep_DB::table('irep_flats')->create($row); -
interactive-real-estate/trunk/includes/controllers/DataImportExport.php
r3394128 r3394242 97 97 98 98 99 100 99 $inserted_id = Irep_DB::table($table)->create($row); 101 100 $id_mapping[$table][$old_id] = $inserted_id; … … 140 139 $row = $this->prepare_polygon_svg_data($row, ['follow_link']); 141 140 } 141 142 $typeData = json_decode($row['type'], true); 143 144 $typeData['image_2d'] = []; 145 $typeData['image_3d'] = []; 146 147 $row['type'] = json_encode($typeData); 148 142 149 143 150 $inserted_id = Irep_DB::table('irep_flats')->create($row);
Note: See TracChangeset
for help on using the changeset viewer.