We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7525a66 commit f5d0a12Copy full SHA for f5d0a12
admin/controller/editor/autocomplete.php
@@ -85,11 +85,11 @@ function manufacturers() {
85
86
$manufacturers = new \Vvveb\Sql\ManufacturerSQL();
87
88
- $results = $manufacturers->getManufacturers($options);
+ $results = $manufacturers->getAll($options);
89
90
$search = [];
91
92
- foreach ($results['manufacturers'] as $manufacturer) {
+ foreach ($results['manufacturer'] as $manufacturer) {
93
$search[$manufacturer['manufacturer_id']] = $manufacturer['name'];
94
}
95
0 commit comments