Remove deprecated comments since username tag got CDATA

This commit is contained in:
Renato Botelho do Couto 2019-09-11 10:59:58 -03:00
parent c244b2be98
commit 1dcaf2d816

View File

@ -112,7 +112,6 @@ function easyrule_block_rule_create($int = 'wan', $ipproto = "inet") {
$filterent['source']['address'] = $blockaliasname . strtoupper($int);
$filterent['destination']['any'] = '';
$filterent['descr'] = gettext("Easy Rule: Blocked from Firewall Log View");
/* Do not translate this, it's considered a username which cannot contain international characters */
$filterent['created'] = make_config_revision_entry(null, "Easy Rule");
$filterent['tracker'] = (int)microtime(true);
@ -328,7 +327,6 @@ function easyrule_pass_rule_add($int, $proto, $srchost, $dsthost, $dstport, $ipp
pconfig_to_address($filterent['source'], $srchost, $srcmask);
pconfig_to_address($filterent['destination'], $dsthost, $dstmask, '', $dstport, $dstport);
/* Do not translate this, it's considered a username which cannot contain international characters */
$filterent['created'] = make_config_revision_entry(null, "Easy Rule");
$filterent['tracker'] = (int)microtime(true);
$a_filter[] = $filterent;