Florian Schaal
2015-05-22 5c950fbbc5f574d34d9d12f394b0ea2838133583
add missing global $app
2 files modified
2 ■■■■■ changed files
interface/web/dns/dns_a_edit.php 1 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_cname_edit.php 1 ●●●● patch | view | raw | blame | history
interface/web/dns/dns_a_edit.php
@@ -46,6 +46,7 @@
class page_action extends dns_page_action {
    protected function checkDuplicate() {
        global $app;
        //* Check for duplicates where IP and hostname are the same
        $tmp = $app->db->queryOneRecord("SELECT count(id) as number FROM dns_rr WHERE (type = 'A' AND name = ? AND zone = ? and data = ? and id != ?) OR (type = 'CNAME' AND name = ? AND zone = ? and id != ?)", $this->dataRecord["name"], $this->dataRecord["zone"], $this->dataRecord["data"], $this->id, $this->dataRecord["name"], $this->dataRecord["zone"], $this->id);
        if($tmp['number'] > 0) return true;
interface/web/dns/dns_cname_edit.php
@@ -46,6 +46,7 @@
class page_action extends dns_page_action {
    protected function checkDuplicate() {
        global $app;
        //* Check for duplicates where IP and hostname are the same
        $tmp = $app->db->queryOneRecord("SELECT count(id) as number FROM dns_rr WHERE (type = 'A' AND name = ? AND zone = ? and id != ?) OR (type = 'CNAME' AND name = ? AND zone = ? and id != ?)", $this->dataRecord["name"], $this->dataRecord["zone"], $this->id, $this->dataRecord["name"], $this->dataRecord["zone"], $this->id);
        if($tmp['number'] > 0) return true;