Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add missing space before caret #391

Merged
merged 4 commits into from
Oct 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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