summaryrefslogtreecommitdiff
path: root/classes/pref/feeds.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 /classes/pref/feeds.php
parent26d6b84a572b5cbd99acffc5ae727ea6d1be543a (diff)
replace print_hidden with hidden_tag
Diffstat (limited to 'classes/pref/feeds.php')
-rwxr-xr-xclasses/pref/feeds.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php
index d97081293..d087d026d 100755
--- a/classes/pref/feeds.php
+++ b/classes/pref/feeds.php
@@ -524,9 +524,9 @@ class Pref_Feeds extends Handler_Protected {
$title = htmlspecialchars($row["title"]);
- print_hidden("id", "$feed_id");
- print_hidden("op", "pref-feeds");
- print_hidden("method", "editSave");
+ print \Controls\hidden_tag("id", "$feed_id");
+ print \Controls\hidden_tag("op", "pref-feeds");
+ print \Controls\hidden_tag("method", "editSave");
print "<header>".__("Feed")."</header>";
print "<section>";
@@ -821,9 +821,9 @@ class Pref_Feeds extends Handler_Protected {
print "<p>";
- print_hidden("ids", "$feed_ids");
- print_hidden("op", "pref-feeds");
- print_hidden("method", "batchEditSave");
+ print \Controls\hidden_tag("ids", "$feed_ids");
+ print \Controls\hidden_tag("op", "pref-feeds");
+ print \Controls\hidden_tag("method", "batchEditSave");
print "<header>".__("Feed")."</header>";
print "<section>";