diff --git a/phpBB/adm/style/acp_bots.html b/phpBB/adm/style/acp_bots.html
index e0e9588364..3a5ef72acd 100644
--- a/phpBB/adm/style/acp_bots.html
+++ b/phpBB/adm/style/acp_bots.html
@@ -76,7 +76,7 @@
{modules.MODULE_IMAGE} |
{modules.MODULE_TITLE} [{L_HIDDEN_MODULE}] |
- {L_DISABLE}{L_ENABLE} |
+ {L_DISABLE}{L_ENABLE} |
{ICON_MOVE_UP_DISABLED}
diff --git a/phpBB/adm/style/acp_profile.html b/phpBB/adm/style/acp_profile.html
index 7804533d1a..d0920774f1 100644
--- a/phpBB/adm/style/acp_profile.html
+++ b/phpBB/adm/style/acp_profile.html
@@ -195,7 +195,7 @@
| {fields.FIELD_IDENT} |
{fields.FIELD_TYPE} |
- {fields.L_ACTIVATE_DEACTIVATE} | {L_TRANSLATE} |
+ {fields.L_ACTIVATE_DEACTIVATE} | {L_TRANSLATE} |
diff --git a/phpBB/adm/style/acp_styles.html b/phpBB/adm/style/acp_styles.html
index dfc8def646..0b98dea603 100644
--- a/phpBB/adm/style/acp_styles.html
+++ b/phpBB/adm/style/acp_styles.html
@@ -288,7 +288,7 @@
|
- {installed.L_STYLE_ACT_DEACT} |
+ {installed.L_STYLE_ACT_DEACT} |
{installed.S_ACTIONS}
diff --git a/phpBB/styles/script.js b/phpBB/styles/script.js
index 59fe7cf8e2..4630c4fed1 100644
--- a/phpBB/styles/script.js
+++ b/phpBB/styles/script.js
@@ -377,7 +377,7 @@ phpbb.add_ajax_callback('post_delete', function(el) {
tr.next().find('.up').html(' ');
phpbb.ajaxify({selector: tr.next().find('.up').children('a')}, false, 'forum_up');
}
-}).add_ajax_callback('style_act_deact', function(el, res) {
+}).add_ajax_callback('act_deact', function(el, res) {
$(el).text(res.text);
var new_href = $(el).attr('href');
if (new_href.indexOf('deactivate') !== -1)
|