Skip to content

Commit 4acd492

Browse files
committed
Fix bug
1 parent 054dea3 commit 4acd492

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

model/common/store.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public function getStores()
1919
$sql->from('store', 's');
2020
if (_PS_VERSION_ > '1.7.0.0') {
2121
$sql->leftJoin('store_lang', 'sl', 'sl.`id_store` = s.`id_store`');
22-
$sql->where('cl.`id_lang` = ' . (int) $this->context->language->id);
22+
$sql->where('sl.`id_lang` = ' . (int) $this->context->language->id);
2323
}
2424
$sql->where('s.`active` = 1');
2525

0 commit comments

Comments
 (0)