Skip to content

Commit 73412c8

Browse files
author
Till Brehm
committed
Merge branch 'stable-3.1' into 'stable-3.1'
fixed typo See merge request ispconfig/ispconfig3!909
2 parents af99f3e + 8b2ecd9 commit 73412c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/web/dns/dns_dkim_edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ function onSubmit() {
128128
// check for duplicate entry
129129
$check=$app->db->queryOneRecord("SELECT * FROM dns_rr WHERE zone = ? AND type = ? AND data = ? AND name = ?", $this->dataRecord["zone"], $this->dataRecord["type"], $this->dataRecord["data"], $this->dataRecord['name']);
130130
if ($check!='') $app->tform->errorMessage .= $app->tform->wordbook["record_exists_txt"];
131-
if (empty($this->dataRecord['data'])) $app->tform->errorMessage /= $app->tform->wordbook["dkim_disabled_txt"];
131+
if (empty($this->dataRecord['data'])) $app->tform->errorMessage .= $app->tform->wordbook["dkim_disabled_txt"];
132132

133133
// validate selector and public-key
134134
if (empty($this->dataRecord['selector'])) $app->tform->errorMessage .= '<br/>'.$app->tform->wordbook["dkim_selector_empty_txt"].'<br/>';

0 commit comments

Comments
 (0)