Skip to content

Commit

Permalink
Merge pull request #13906 from pemaier/pemaier-patch-8-8
Browse files Browse the repository at this point in the history
Update product.php - autocomplete limit config centralized, similar t…
  • Loading branch information
danielkerr committed May 10, 2024
2 parents f0f8300 + ed090c4 commit f4fa7cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/admin/controller/catalog/product.php
Original file line number Diff line number Diff line change
Expand Up @@ -1312,7 +1312,7 @@ public function autocomplete(): void {
if (isset($this->request->get['limit'])) {
$limit = (int)$this->request->get['limit'];
} else {
$limit = 5;
$limit = $this->config->get('config_autocomplete_limit');
}

$filter_data = [
Expand Down

0 comments on commit f4fa7cc

Please sign in to comment.