Skip to content

Commit 385e219

Browse files
committed
Fix string errors
1 parent 0d83850 commit 385e219

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

interface/web/dns/dns_soa_del.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function onBeforeDelete() {
5555

5656
if($app->tform->checkPerm($this->id, 'd') == false) $app->error($app->lng('error_no_delete_permission'));
5757

58-
// Delete all records that belog to this zone.
58+
// Delete all records that belong to this zone.
5959
$records = $app->db->queryAllRecords("SELECT id FROM dns_rr WHERE zone = ?", $this->id);
6060
foreach($records as $rec) {
6161
$app->db->datalogDelete('dns_rr', 'id', $rec['id']);

server/plugins-available/bind_plugin.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ function soa_update($event_name, $data) {
352352
$loglevel = @($dns_config['disable_bind_log'] === 'y') ? LOGLEVEL_DEBUG : LOGLEVEL_WARN;
353353
$app->log("Writing BIND domain file failed: ".$filename." ".implode(' ', $out), $loglevel);
354354
if(is_array($out) && !empty($out)){
355-
$app->log('Reason for Bind restart failure: '.implode("\n", $out), $loglevel);
355+
$app->log('Reason for Bind zone check failure: '.implode("\n", $out), $loglevel);
356356
$app->dbmaster->datalogError(implode("\n", $out));
357357
}
358358
if ($old_zonefile != '') {

0 commit comments

Comments
 (0)