Skip to content

Commit

Permalink
fixed minor noticed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nayemmajhar committed Jul 10, 2015
1 parent 00d50b5 commit 233ce99
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions plugins/ajax/helix3.php
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,7 @@ static public function loadNewLayout($layout_data = null){
$_active ='';
} ?>
<?php
$active = '';
$customLayout = '';
if (!isset($colGrid[$row->layout])) {
$active = 'active';
Expand Down
2 changes: 1 addition & 1 deletion plugins/ajax/helix3.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<license>http://www.gnu.org/licenses/gpl-2.0.html GPLv2 or later</license>
<authorEmail>support@joomshaper.com</authorEmail>
<authorUrl>www.joomshaper.com</authorUrl>
<version>1.0</version>
<version>1.1</version>
<description>Helix3 Framework - Joomla Template Framework by JoomShaper</description>

<updateservers>
Expand Down
2 changes: 1 addition & 1 deletion plugins/system/helix3.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<license>http://www.gnu.org/licenses/gpl-2.0.html GPLv2 or later</license>
<authorEmail>support@joomshaper.com</authorEmail>
<authorUrl>www.joomshaper.com</authorUrl>
<version>1.0</version>
<version>1.1</version>
<description>Helix3 Framework - Joomla Template Framework by JoomShaper</description>

<updateservers>
Expand Down
12 changes: 6 additions & 6 deletions plugins/system/layout/generated.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2015 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
*/
*/

//no direct accees
defined ('_JEXEC') or die ('resticted aceess');
Expand Down Expand Up @@ -47,7 +47,7 @@
<?php echo JText::_('HELIX_ENTER_LAYOUT_NAME'); ?>
<input class="form-control addon-input addon-name" type="text" data-attrname="layout_name" value="" placeholder="">
</label>
</div>
</div>
</div>
</div>

Expand Down Expand Up @@ -76,7 +76,7 @@
<div class="settings-left pull-left">
<a class="row-move" href="#"><i class="fa fa-arrows"></i></a>
<strong class="section-title"><?php echo JText::_('HELIX_SECTION_TITLE'); ?></strong>
</div>
</div>

<div class="settings-right pull-right">
<ul class="button-group">
Expand All @@ -90,7 +90,7 @@
$active = '';
}
?>
<li><a href="#" class="hasTooltip column-layout-custom column-layout custom <?php echo $active; ?>" data-layout="<?php echo $customLayout; ?>" data-type='custom' data-original-title="<strong>Custom Layout</strong>"></a></li>
<li><a href="#" class="hasTooltip column-layout-custom column-layout custom <?php echo $active; ?>" data-layout="" data-type='custom' data-original-title="<strong>Custom Layout</strong>"></a></li>
</ul>
</li>
<li><a class="btn btn-small add-row" href="#"><i class="fa fa-bars"></i> <?php echo JText::_('HELIX_ADD_ROW'); ?></a></li>
Expand Down Expand Up @@ -140,7 +140,7 @@
<ul class="column-list">
<?php
$active = '';
foreach ($colGrid as $key => $grid){
foreach ($colGrid as $key => $grid){
if($key == $row->layout){
$active = 'active';
}
Expand Down Expand Up @@ -190,4 +190,4 @@
?>
</div>

<div class="clearfix"></div>
<div class="clearfix"></div>

0 comments on commit 233ce99

Please sign in to comment.