1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 13:30:25 +02:00

[feature/ajax] Rename exception to filter

PHPBB3-10270
This commit is contained in:
Igor Wiedler
2012-02-11 20:32:44 +01:00
parent 6ad4015a37
commit b8a6a50f5c
2 changed files with 7 additions and 7 deletions

View File

@@ -336,7 +336,7 @@ phpbb.ajaxify = function(options) {
// If the element is a form, POST must be used and some extra data must
// be taken from the form.
var run_exception = (typeof options.exception === 'function');
var run_filter = (typeof options.filter === 'function');
if (is_form)
{
action = /action\[([a-z]+)\]/.exec(this.name);
@@ -353,9 +353,9 @@ phpbb.ajaxify = function(options) {
data += '&' + this.name + '=' + this.value;
}
// If exception function returns true, cancel the AJAX functionality,
// If filter function returns true, cancel the AJAX functionality,
// and return true (meaning that the HTTP request will be sent normally).
if (run_exception && options.exception.call($this.parents('form')[0], action, data))
if (run_filter && options.filter.call($this.parents('form')[0], action, data))
{
return true;
}
@@ -364,9 +364,9 @@ phpbb.ajaxify = function(options) {
}
else
{
// If exception function returns true, cancel the AJAX functionality,
// If filter function returns true, cancel the AJAX functionality,
// and return true (meaning that the HTTP request will be sent normally).
if (run_exception && options.exception.call(this))
if (run_filter && options.filter.call(this))
{
return true;
}