summaryrefslogtreecommitdiff
path: root/classes/pref/filters.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-20 18:21:36 +0300
committerAndrew Dolgov <[email protected]>2021-02-20 18:21:36 +0300
commit590b1fc39e104bd41a8ab213b98b38345dba4eac (patch)
treec16e1c0826fd9b3a723d589abc202e00c721c411 /classes/pref/filters.php
parentbe91355c20140c797912247bfbfb45b7dbfd41c9 (diff)
a few more methods shuffled around
Diffstat (limited to 'classes/pref/filters.php')
-rwxr-xr-xclasses/pref/filters.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/pref/filters.php b/classes/pref/filters.php
index cfff383d8..1aeaa8a3f 100755
--- a/classes/pref/filters.php
+++ b/classes/pref/filters.php
@@ -389,7 +389,7 @@ class Pref_Filters extends Handler_Protected {
unset($line["match_on"]);
print "<li><input dojoType='dijit.form.CheckBox' type='checkbox' onclick='Lists.onRowChecked(this)'>
- <span onclick='App.dialogOf(this).editRule(this)'>".$this->_get_rule_name($line)."</span>".
+ <span onclick='App.dialogOf(this).onRuleClicked(this)'>".$this->_get_rule_name($line)."</span>".
\Controls\hidden_tag("rule[]", (string)json_encode($line))."</li>";
}
}
@@ -429,7 +429,7 @@ class Pref_Filters extends Handler_Protected {
unset($line["id"]);
print "<li><input dojoType='dijit.form.CheckBox' type='checkbox' onclick='Lists.onRowChecked(this)'>
- <span onclick='App.dialogOf(this).editAction(this)'>".$this->_get_action_name($line)."</span>".
+ <span onclick='App.dialogOf(this).onActionClicked(this)'>".$this->_get_action_name($line)."</span>".
\Controls\hidden_tag("action[]", (string)json_encode($line))."</li>";
}
}
@@ -861,7 +861,7 @@ class Pref_Filters extends Handler_Protected {
print "<section>";
print "<select name='action_id' dojoType='fox.form.Select'
- onchange='Filters.hideOrShowActionParam(this)'>";
+ onchange='App.dialogOf(this).hideOrShowActionParam(this)'>";
$res = $this->pdo->query("SELECT id,description FROM ttrss_filter_actions
ORDER BY name");