summaryrefslogtreecommitdiff
path: root/plugins/af_proxy_http/init.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-16 14:32:06 +0300
committerAndrew Dolgov <[email protected]>2021-02-16 14:32:06 +0300
commit1f43d7916cda16e9680b9087bda1f52934e8f25b (patch)
treea88b881b4262817a4d273e038b4dbc6071b439ab /plugins/af_proxy_http/init.php
parent26d6b84a572b5cbd99acffc5ae727ea6d1be543a (diff)
replace print_hidden with hidden_tag
Diffstat (limited to 'plugins/af_proxy_http/init.php')
-rw-r--r--plugins/af_proxy_http/init.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/af_proxy_http/init.php b/plugins/af_proxy_http/init.php
index 3f26ca900..b82999281 100644
--- a/plugins/af_proxy_http/init.php
+++ b/plugins/af_proxy_http/init.php
@@ -218,9 +218,9 @@ class Af_Proxy_Http extends Plugin {
}
</script>";
- print_hidden("op", "pluginhandler");
- print_hidden("method", "save");
- print_hidden("plugin", "af_proxy_http");
+ print \Controls\hidden_tag("op", "pluginhandler");
+ print \Controls\hidden_tag("method", "save");
+ print \Controls\hidden_tag("plugin", "af_proxy_http");
$proxy_all = $this->host->get($this, "proxy_all");
print_checkbox("proxy_all", $proxy_all);