Skip to content

Commit

Permalink
Merge pull request #196 from PrestaShop/dev
Browse files Browse the repository at this point in the history
Release version 6.0.6
  • Loading branch information
jolelievre authored Feb 26, 2024
2 parents afdbe64 + a2b5662 commit e84c1d1
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>ps_linklist</name>
<displayName><![CDATA[Link List]]></displayName>
<version><![CDATA[6.0.5]]></version>
<version><![CDATA[6.0.6]]></version>
<description><![CDATA[Adds a block with several links.]]></description>
<author><![CDATA[PrestaShop]]></author>
<tab><![CDATA[front_office_features]]></tab>
Expand Down
2 changes: 1 addition & 1 deletion ps_linklist.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public function __construct()
{
$this->name = 'ps_linklist';
$this->author = 'PrestaShop';
$this->version = '6.0.5';
$this->version = '6.0.6';
$this->need_instance = 0;
$this->tab = 'front_office_features';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,6 @@ private function processForm(Request $request, $successMessage, $linkBlockId = n
protected function buildFiltersParamsByRequest(Request $request)
{
$filtersParams = array_merge(LinkBlockFilters::getDefaults(), $request->query->all());
$filtersParams['filters']['id_lang'] = $this->getContext()->language->id;

return $filtersParams;
}
Expand Down
1 change: 0 additions & 1 deletion src/Repository/LinkBlockRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,6 @@ public function installFixtures()
}

foreach ($queries as $query) {
$this->connection->executeQuery($query);
try {
$this->connection->executeQuery($query);
} catch (DBALException $e) {
Expand Down

0 comments on commit e84c1d1

Please sign in to comment.