diff options
| author | spiderr <spider@viovio.com> | 2013-04-02 01:46:36 -0400 |
|---|---|---|
| committer | spiderr <spider@viovio.com> | 2013-04-02 01:46:36 -0400 |
| commit | b4dc9d76026fcda5b823442cf0407d3f1d12f75f (patch) | |
| tree | 0ddaf67b7e146f2ba86913dc7d3c0716f6dab912 /smartyplugins/block.jstab.php | |
| parent | 3ff0fac332042d62fc8bc0fc33cb239c211535f3 (diff) | |
| download | themes-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.php | 2 |
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; |
