Skip to content

Commit

Permalink
[FIX] website_legal_page: add missing space before caret (OCA#391)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroheure authored and Nicolas JEUDY committed Jan 23, 2018
1 parent e5a3373 commit 6a2d7b5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion website_legal_page/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'name': "Website Legal Page",
'description': 'Add legal information, such as privacy policy',
'category': 'Website',
'version': '10.0.1.1.0',
'version': '10.0.1.2.0',
'depends': [
'website',
],
Expand Down
2 changes: 1 addition & 1 deletion website_legal_page/views/website_legal.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
inherit_id="website.layout_footer_copyright"
name="Legal advice Link">
<xpath expr="//footer//div/span[@t-field='res_company.name']" position="after">
<span>- <a href="/legal/advice">Legal Advice</a></span>
<span> - <a href="/legal/advice">Legal Advice</a></span>
</xpath>
</template>

Expand Down
2 changes: 1 addition & 1 deletion website_legal_page/views/website_privacy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
inherit_id="website.layout_footer_copyright"
name="Privacy policy Link">
<xpath expr="//footer//div/span[@t-field='res_company.name']" position="after">
<span>- <a href="/legal/privacy-policy">Privacy Policy</a></span>
<span> - <a href="/legal/privacy-policy">Privacy Policy</a></span>
</xpath>
</template>

Expand Down
2 changes: 1 addition & 1 deletion website_legal_page/views/website_terms.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
inherit_id="website.layout_footer_copyright"
name="Terms of use Link">
<xpath expr="//footer//div/span[@t-field='res_company.name']" position="after">
<span>- <a href="/legal/terms-of-use">Terms of use</a></span>
<span> - <a href="/legal/terms-of-use">Terms of use</a></span>
</xpath>
</template>

Expand Down

0 comments on commit 6a2d7b5

Please sign in to comment.