Skip to content
This repository has been archived by the owner on Sep 8, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1003 from paulgeneres/pull-request
Browse files Browse the repository at this point in the history
Fixed: Marketplace search function.
  • Loading branch information
daeks committed Jul 26, 2017
2 parents ca5089e + ea3d370 commit 06ced3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/market/dialog.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function sort_name($a, $b) { return strnatcmp($a['name'], $b['name']); }
usort($subdata, 'sort_name');
foreach($subdata as $addon){
if(isset($_GET['query']) && (strpos(strtolower(trim($addon['name'])), strtolower(trim($_GET['query']))) === false)) {
break;
continue;
}
echo '<tr><td><div style="position:relative;height:100px">';
$left = 0;
Expand Down

0 comments on commit 06ced3c

Please sign in to comment.