Skip to content

Commit

Permalink
0.0.5: #1
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Sep 12, 2019
1 parent f16df6d commit de9b488
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Controller/Index/Change.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function($id, $rev, $needURL) {return df_sort(
array_values(df_map(function(C $c) use($needURL) {return df_clean([
'id' => (int)$c->getId(), 'name' => $c->getName(), 'url' => $needURL ? $c->getUrl() : null
]);}, df_category($id)->getChildrenCategories()))
,function($a, $b) use($rev) {$r = strcasecmp($a, $b); return $rev ? -$r : $r;}
,function($a, $b) use($rev) {$r = strcasecmp($a['name'], $b['name']); return $rev ? -$r : $r;}
);}
,[CT::TAG], (int)df_request('selectedValue'), 1 === $i, 4 === $i));}
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wolfautoparts.com/filter"
,"version": "0.0.4"
,"version": "0.0.5"
,"description": "A custom product filtering module for wolfautoparts.com (Magento 2)"
,"type": "magento2-module"
,"homepage": "https://github.com/wolfautoparts-com/filter"
Expand Down

0 comments on commit de9b488

Please sign in to comment.