Falko Timme
2014-02-28 7c19f2dbb4608ef6b3f219d45490b25aa05e848c
- Databases: Make sure backup_interval is a string, not an integer.
2 files modified
6 ■■■■ changed files
interface/web/sites/database_edit.php 4 ●●●● patch | view | raw | blame | history
interface/web/sites/web_domain_edit.php 2 ●●● patch | view | raw | blame | history
interface/web/sites/database_edit.php
@@ -421,7 +421,7 @@
            //* The Database user shall be owned by the same group then the website
            $sys_groupid = $app->functions->intval($web['sys_groupid']);
            $backup_interval = $web['backup_interval'];
            $backup_interval = $app->db->quote($web['backup_interval']);
            $backup_copies = $app->functions->intval($web['backup_copies']);
            $sql = "UPDATE web_database SET sys_groupid = '$sys_groupid', backup_interval = '$backup_interval', backup_copies = '$backup_copies' WHERE database_id = ".$this->id;
@@ -437,7 +437,7 @@
            //* The Database user shall be owned by the same group then the website
            $sys_groupid = $app->functions->intval($web['sys_groupid']);
            $backup_interval = $web['backup_interval'];
            $backup_interval = $app->db->quote($web['backup_interval']);
            $backup_copies = $app->functions->intval($web['backup_copies']);
            $sql = "UPDATE web_database SET sys_groupid = '$sys_groupid', backup_interval = '$backup_interval', backup_copies = '$backup_copies' WHERE database_id = ".$this->id;
interface/web/sites/web_domain_edit.php
@@ -1012,7 +1012,7 @@
        //* Change database backup options when web backup options have been changed
        if(isset($this->dataRecord['backup_interval']) && ($this->dataRecord['backup_interval'] != $this->oldDataRecord['backup_interval'] || $this->dataRecord['backup_copies'] != $this->oldDataRecord['backup_copies'])) {
            //* Update all databases
            $backup_interval = $app->functions->intval($this->dataRecord['backup_interval']);
            $backup_interval = $app->db->quote($this->dataRecord['backup_interval']);
            $backup_copies = $app->functions->intval($this->dataRecord['backup_copies']);
            $records = $app->db->queryAllRecords("SELECT database_id FROM web_database WHERE parent_domain_id = ".$this->id);
            foreach($records as $rec) {