diff options
| author | spider@dev <spiderr@bitweaver.org> | 2018-03-26 12:55:54 -0400 |
|---|---|---|
| committer | spider@dev <spiderr@bitweaver.org> | 2018-03-26 12:55:54 -0400 |
| commit | 2f7f78bdc7c825ccf72ea83e8abf0e2c8994789e (patch) | |
| tree | a08ba94f0fc4726ff63728475f600037e837e7cf /smartyplugins/block.jstab.php | |
| parent | ab2cb1197c7d9c175be3b319bad92d7325c44de6 (diff) | |
| download | themes-2f7f78bdc7c825ccf72ea83e8abf0e2c8994789e.tar.gz themes-2f7f78bdc7c825ccf72ea83e8abf0e2c8994789e.tar.bz2 themes-2f7f78bdc7c825ccf72ea83e8abf0e2c8994789e.zip | |
fix tweak var naming tabType
Diffstat (limited to 'smartyplugins/block.jstab.php')
| -rw-r--r-- | smartyplugins/block.jstab.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smartyplugins/block.jstab.php b/smartyplugins/block.jstab.php index 4f74eff..bbeb58f 100644 --- a/smartyplugins/block.jstab.php +++ b/smartyplugins/block.jstab.php @@ -32,9 +32,9 @@ function smarty_block_jstab( $pParams, $pContent, &$gBitSmarty, $pRepeat ) { $jsTabLinks[] = $tabString; } - $type = BitBase::getParameter( $pParams, 'type', 'tab' ); + $tabType = BitBase::getParameter( $pParams, 'tabtype', 'tab' ); - $ret = '<div class="'.$type.'-pane" id="'.$tabId.'">'; + $ret = '<div class="'.$tabType.'-pane" id="'.$tabId.'">'; $ret .= $pContent; $ret .= '</div>'; |
