Skip to content

Commit

Permalink
Correct syntax error on wikipedia link
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed May 11, 2012
1 parent f187c1e commit 6a396f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sentry/templates/sentry/projects/manage.html
Expand Up @@ -56,7 +56,7 @@ <h2>{% trans "Project Details" %}</h2>
<div><legend>Client Security</legend></div>
{% with form.origins as field %}
<p>{% blocktrans with 'https://github.com/lincolnloop/raven-js' as link %}Configure origin URLs which Sentry should accept events from. This is used for communication with client's like <a href="{{ link }}">raven-js</a>.{% endblocktrans %}
<p>{% blocktrans with 'http://en.wikipedia.org/wiki/Cross-origin_resource_sharing' as link' %}For more information check out the <a href="{{ link }}">Wikipedia page on CORS</a>.{% endblocktrans %}</p>
<p>{% blocktrans with 'http://en.wikipedia.org/wiki/Cross-origin_resource_sharing' as link %}For more information check out the <a href="{{ link }}">Wikipedia page on CORS</a>.{% endblocktrans %}</p>
<div class="control-group{% if field.errors %} error{% endif %}">
<div class="controls">
<div class="help-block">{% trans "List one URL per line." %}</div>
Expand Down

0 comments on commit 6a396f6

Please sign in to comment.