From 51fc6280b67a59d0bcda2b9d8d5b3f75392c9734 Mon Sep 17 00:00:00 2001 From: cahrens Date: Wed, 19 Jun 2013 16:23:00 -0400 Subject: [PATCH] Don't concatenate together multiple strings. --- cms/templates/settings.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cms/templates/settings.html b/cms/templates/settings.html index 55dd2b67b2..a331c481a6 100644 --- a/cms/templates/settings.html +++ b/cms/templates/settings.html @@ -190,7 +190,13 @@ from contentstore import utils
  • - ${_("Introductions, prerequisites, FAQs that are used on ")}${_("your course summary page")}${_(" (formatted in HTML)")} + <%def name='overview_text()'><% + a_link_start = '' + _("your course summary page") + '' + a_link = a_link_start + utils.get_lms_link_for_about_page(course_location) + a_link_end + text = _("Introductions, prerequisites, FAQs that are used on %s (formatted in HTML)") % a_link + %>${text} + ${overview_text()}