We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5008d8c commit e637b75Copy full SHA for e637b75
interface/web/dns/dns_srv_edit.php
@@ -51,9 +51,9 @@ function onShowEnd() {
51
// Split the 3 parts of the SRV Record apart
52
$split = explode(' ', $this->dataRecord['data']);
53
54
- $app->tpl->setVar('weight', $split[0]);
55
- $app->tpl->setVar('port', $split[1]);
56
- $app->tpl->setVar('target', $split[2]);
+ $app->tpl->setVar('weight', $split[0], true);
+ $app->tpl->setVar('port', $split[1], true);
+ $app->tpl->setVar('target', $split[2], true);
57
58
parent::onShowEnd();
59
}
0 commit comments