aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_acp.php
diff options
context:
space:
mode:
authorCesar G <prototech91@gmail.com>2014-05-09 13:49:41 -0700
committerCesar G <prototech91@gmail.com>2014-05-09 13:49:41 -0700
commite233f0af3615070a003a49bf055ae9fa582cc899 (patch)
treeedfeb589866241895c720b59083700ea0f2da9e1 /phpBB/includes/functions_acp.php
parent2ca01bdcbee86cdbf9971c356c2224e9ea8358f4 (diff)
downloadforums-e233f0af3615070a003a49bf055ae9fa582cc899.tar
forums-e233f0af3615070a003a49bf055ae9fa582cc899.tar.gz
forums-e233f0af3615070a003a49bf055ae9fa582cc899.tar.bz2
forums-e233f0af3615070a003a49bf055ae9fa582cc899.tar.xz
forums-e233f0af3615070a003a49bf055ae9fa582cc899.zip
[ticket/9388] Use "togglable" instead of "toggable"
PHPBB3-9388
Diffstat (limited to 'phpBB/includes/functions_acp.php')
-rw-r--r--phpBB/includes/functions_acp.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php
index 0d19fc4d6a..1c4d6966da 100644
--- a/phpBB/includes/functions_acp.php
+++ b/phpBB/includes/functions_acp.php
@@ -364,7 +364,7 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
if ($tpl_type[0] == 'select')
{
$size = (isset($tpl_type[1])) ? (int) $tpl_type[1] : 1;
- $data_toggle = (!empty($tpl_type[2])) ? ' data-toggable-settings="true"' : '';
+ $data_toggle = (!empty($tpl_type[2])) ? ' data-togglable-settings="true"' : '';
$tpl = '<select id="' . $key . '" name="' . $name . '"' . (($size > 1) ? ' size="' . $size . '"' : '') . $data_toggle . '>' . $return . '</select>';
}