diff options
author | erangamapa <erangamapa@gmail.com> | 2013-02-24 21:34:29 +0530 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2013-02-24 18:12:50 +0100 |
commit | 1b39d6d65e2af632e6ad2ccba7fa2e61ab36c30c (patch) | |
tree | eee948a975c7c32a56204b906442526e6f120d38 /phpBB | |
parent | c0a39537e38c350365c0baa74be31c000b1e9381 (diff) | |
download | forums-1b39d6d65e2af632e6ad2ccba7fa2e61ab36c30c.tar forums-1b39d6d65e2af632e6ad2ccba7fa2e61ab36c30c.tar.gz forums-1b39d6d65e2af632e6ad2ccba7fa2e61ab36c30c.tar.bz2 forums-1b39d6d65e2af632e6ad2ccba7fa2e61ab36c30c.tar.xz forums-1b39d6d65e2af632e6ad2ccba7fa2e61ab36c30c.zip |
[ticket/11358] Changed the name of post parameter.
Replaced the parameter name 'defaultbylink' to a meaningful name
'set_default_on_all'. Parameter is used for making all users
default for selected group in acp_groups.php.
PHPBB3-11358
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/acp/acp_groups.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_groups.php b/phpBB/includes/acp/acp_groups.php index 33d5c16ed0..00ca26dfa6 100644 --- a/phpBB/includes/acp/acp_groups.php +++ b/phpBB/includes/acp/acp_groups.php @@ -143,7 +143,7 @@ class acp_groups } break; - case 'defaultbylink': + case 'set_default_on_all': if (confirm_box(true)) { $group_name = ($group_row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $group_row['group_name']] : $group_row['group_name']; @@ -701,7 +701,7 @@ class acp_groups 'U_ACTION' => $this->u_action . "&g=$group_id", 'U_BACK' => $this->u_action, 'U_FIND_USERNAME' => append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=searchuser&form=list&field=usernames'), - 'U_DEFAULT_ALL' => "{$this->u_action}&action=defaultbylink&g=$group_id", + 'U_DEFAULT_ALL' => "{$this->u_action}&action=set_default_on_all&g=$group_id", )); // Grab the members |