aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/ajax.js
diff options
context:
space:
mode:
authorCallum Macrae <callum@lynxphp.com>2011-11-17 17:37:51 +0000
committerIgor Wiedler <igor@wiedler.ch>2012-03-31 02:09:22 +0200
commit05a88966d4d7156417c151d657989dca4ae01b87 (patch)
tree8715155650e47bc0f3ceab68c3b9b4996c1d44cd /phpBB/adm/style/ajax.js
parentf9ddeacd8e25f74845704d1186dbc4edde6a71d7 (diff)
downloadforums-05a88966d4d7156417c151d657989dca4ae01b87.tar
forums-05a88966d4d7156417c151d657989dca4ae01b87.tar.gz
forums-05a88966d4d7156417c151d657989dca4ae01b87.tar.bz2
forums-05a88966d4d7156417c151d657989dca4ae01b87.tar.xz
forums-05a88966d4d7156417c151d657989dca4ae01b87.zip
[ticket/10272] Renamed AJAX callback act_deact to activate_deactivate.
PHPBB3-10272
Diffstat (limited to 'phpBB/adm/style/ajax.js')
-rw-r--r--phpBB/adm/style/ajax.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/style/ajax.js b/phpBB/adm/style/ajax.js
index 869126ab76..88c28fe071 100644
--- a/phpBB/adm/style/ajax.js
+++ b/phpBB/adm/style/ajax.js
@@ -46,7 +46,7 @@ phpbb.add_ajax_callback('forum_down', function() {
* It does this by replacing the text, and replacing all instances of "activate"
* in the href with "deactivate", and vice versa.
*/
-phpbb.add_ajax_callback('act_deact', function(res) {
+phpbb.add_ajax_callback('activate_deactivate', function(res) {
el = $(this);
el.text(res.text);
var new_href = el.attr('href');