Skip to content

Commit 5cbfe05

Browse files
authored
Merge pull request #133 from PrestaShop/dev
Release v5.0.4
2 parents 77ce900 + ec92017 commit 5cbfe05

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<module>
33
<name>ps_linklist</name>
44
<displayName><![CDATA[Link List]]></displayName>
5-
<version><![CDATA[5.0.3]]></version>
5+
<version><![CDATA[5.0.4]]></version>
66
<description><![CDATA[Adds a block with several links.]]></description>
77
<author><![CDATA[PrestaShop]]></author>
88
<tab><![CDATA[front_office_features]]></tab>

ps_linklist.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @copyright Since 2007 PrestaShop SA and Contributors
1818
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
1919
*/
20-
if (!defined('_CAN_LOAD_FILES_')) {
20+
if (!defined('_PS_VERSION_')) {
2121
exit;
2222
}
2323

@@ -71,7 +71,7 @@ public function __construct()
7171
{
7272
$this->name = 'ps_linklist';
7373
$this->author = 'PrestaShop';
74-
$this->version = '5.0.3';
74+
$this->version = '5.0.4';
7575
$this->need_instance = 0;
7676
$this->tab = 'front_office_features';
7777

views/templates/admin/fields.html.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
{%- endblock checkbox_widget %}
6666

6767
{% block form_row -%}
68-
{% spaceless %}
68+
{% apply spaceless %}
6969
<div class="{{ block('form_row_class') }} {% if (not compound or force_error|default(false)) and not valid %} has-error{% endif %}">
7070
{% if form.vars.label is not same as(false) %}
7171
{{ form_label(form) }}
@@ -78,7 +78,7 @@
7878
{{ form_errors(form) }}
7979
</div>
8080
</div>
81-
{% endspaceless %}
81+
{% endapply %}
8282
{%- endblock form_row %}
8383

8484
{% block form_row_class -%}

0 commit comments

Comments
 (0)