mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Static Map API (#1098)
Added new Static Map Feature --------- Co-authored-by: phl0 <github@florian-wolters.de>
This commit is contained in:
@@ -262,6 +262,12 @@ class Stations extends CI_Model {
|
||||
}
|
||||
// Delete QSOs
|
||||
$this->db->query("DELETE FROM ".$this->config->item('table_name')." WHERE station_id = ?",$clean_id);
|
||||
|
||||
// Also clean up static map images
|
||||
if (!$this->load->is_loaded('staticmap_model')) {
|
||||
$this->load->model('staticmap_model');
|
||||
}
|
||||
$this->staticmap_model->remove_static_map_image($clean_id);
|
||||
}
|
||||
|
||||
function set_active($current, $new) {
|
||||
|
||||
Reference in New Issue
Block a user