summaryrefslogtreecommitdiff
path: root/smartyplugins/block.jstab.php
diff options
context:
space:
mode:
authorspider@dev <spiderr@bitweaver.org>2018-03-26 12:55:54 -0400
committerspider@dev <spiderr@bitweaver.org>2018-03-26 12:55:54 -0400
commit2f7f78bdc7c825ccf72ea83e8abf0e2c8994789e (patch)
treea08ba94f0fc4726ff63728475f600037e837e7cf /smartyplugins/block.jstab.php
parentab2cb1197c7d9c175be3b319bad92d7325c44de6 (diff)
downloadthemes-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.php4
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>';