Skip to content
This repository has been archived by the owner on Jun 22, 2021. It is now read-only.

Commit

Permalink
quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpethick committed Feb 3, 2012
1 parent 065c8fb commit 0795ab5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion simplewiki/templates/simplewiki_view.html
Expand Up @@ -8,7 +8,7 @@
{% endblock %}
{% block wiki_body %}
<div id="wiki_article">
{{ wiki_article.current_revision.contents_parsed|safe }}
{{ wiki_article.current_revision.contents|safe }}
{{ block.super }}
</div>
{% endblock %}
2 changes: 1 addition & 1 deletion templates/book/chapter.html
Expand Up @@ -45,7 +45,7 @@ <h1 id="chapter_title" class="float_left">{{ chapter.title }}</h1>
<p class="helptext">{{ chapter.picture_description }}</p>
{% endif %}
{% if related_wiki %}
{{ related_wiki.current_revision.contents_parsed|safe }}
{{ related_wiki.current_revision.contents|safe }}
{% else %}
{{ chapter.body_html|safe }}
{% endif %}
Expand Down

0 comments on commit 0795ab5

Please sign in to comment.