Skip to content

Commit

Permalink
Fix Code Style
Browse files Browse the repository at this point in the history
  • Loading branch information
coolcat-creations committed Jun 27, 2018
1 parent 755fc11 commit a96dea2
Showing 1 changed file with 5 additions and 6 deletions.
Expand Up @@ -215,7 +215,7 @@
{
if ($item->category_level != '1') :
if ($canEditParCat || $canEditOwnParCat) :
echo '<a class="hasTooltip" href=' . $ParentCatUrl . '" title="' . $EditCatTxt . '">';
echo '<a class="hasTooltip" href="' . $ParentCatUrl . '" title="' . $EditCatTxt . '">';
endif;
echo $this->escape($item->parent_category_title);
if ($canEditParCat || $canEditOwnParCat) :
Expand All @@ -224,18 +224,17 @@
echo ' &#187; ';
endif;
if ($canEditCat || $canEditOwnCat) :
echo '<a class="hasTooltip" href=' . $CurrentCatUrl . '" title="' . $EditCatTxt . '">';
echo '<a class="hasTooltip" href="' . $CurrentCatUrl . '" title="' . $EditCatTxt . '">';
endif;
echo $this->escape($item->category_title);
if ($canEditCat || $canEditOwnCat) :
echo '</a>';
endif;
}
else
{

{
if ($canEditCat || $canEditOwnCat) :
echo '<a class="hasTooltip" href=' . $CurrentCatUrl . '" title="' . $EditCatTxt . '">';
echo '<a class="hasTooltip" href="' . $CurrentCatUrl . '" title="' . $EditCatTxt . '">';
endif;
echo $this->escape($item->category_title);
if ($canEditCat || $canEditOwnCat) :
Expand All @@ -245,7 +244,7 @@
if ($item->category_level != '1') :
echo ' &#171; ';
if ($canEditParCat || $canEditOwnParCat) :
echo '<a class="hasTooltip" href=' . $ParentCatUrl . '" title="' . $EditCatTxt . '">';
echo '<a class="hasTooltip" href="' . $ParentCatUrl . '" title="' . $EditCatTxt . '">';
endif;
echo $this->escape($item->parent_category_title);
if ($canEditParCat || $canEditOwnParCat) :
Expand Down

0 comments on commit a96dea2

Please sign in to comment.