summaryrefslogtreecommitdiff
path: root/smartyplugins/block.jstab.php
diff options
context:
space:
mode:
authorspiderr <spider@viovio.com>2013-04-02 01:46:36 -0400
committerspiderr <spider@viovio.com>2013-04-02 01:46:36 -0400
commitb4dc9d76026fcda5b823442cf0407d3f1d12f75f (patch)
tree0ddaf67b7e146f2ba86913dc7d3c0716f6dab912 /smartyplugins/block.jstab.php
parent3ff0fac332042d62fc8bc0fc33cb239c211535f3 (diff)
downloadthemes-b4dc9d76026fcda5b823442cf0407d3f1d12f75f.tar.gz
themes-b4dc9d76026fcda5b823442cf0407d3f1d12f75f.tar.bz2
themes-b4dc9d76026fcda5b823442cf0407d3f1d12f75f.zip
bootstrap updates convert class=row to class=control-group
Diffstat (limited to 'smartyplugins/block.jstab.php')
-rw-r--r--smartyplugins/block.jstab.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/smartyplugins/block.jstab.php b/smartyplugins/block.jstab.php
index d0306a0..51c1d78 100644
--- a/smartyplugins/block.jstab.php
+++ b/smartyplugins/block.jstab.php
@@ -26,7 +26,7 @@ function smarty_block_jstab( $pParams, $pContent, &$gBitSmarty, $pRepeat ) {
$tabId = strtolower( isset( $pParams['id'] ) ? $pParams['id'] : 'tab'.preg_replace("/[^A-Za-z0-9]/", '', $tTitle) );
- array_unshift( $jsTabLinks, '<li><a href="#'.$tabId.'" data-toggle="tab">' . htmlspecialchars( $tTitle ) . '</a></li>' );
+ $jsTabLinks[] = '<li><a href="#'.$tabId.'" data-toggle="tab">' . htmlspecialchars( $tTitle ) . '</a></li>';
$ret = '<div class="tab-pane" id="'.$tabId.'">';
$ret .= $pContent;