diff --git a/lms/templates/help_modal.html b/lms/templates/help_modal.html
index eea5f51683..6731986621 100644
--- a/lms/templates/help_modal.html
+++ b/lms/templates/help_modal.html
@@ -8,7 +8,7 @@ from django.utils.translation import ugettext as _
from django.core.urlresolvers import reverse
from xmodule.tabs import CourseTabList
from microsite_configuration import microsite
-platform_name = microsite.get_value("platform_name", settings.PLATFORM_NAME)
+from microsite_configuration.templatetags.microsite import platform_name
%>
% if settings.FEATURES.get('ENABLE_FEEDBACK_SUBMISSION', False):
@@ -17,7 +17,7 @@ platform_name = microsite.get_value("platform_name", settings.PLATFORM_NAME)
${_("Help")}
-
+
## TODO: find a way to refactor this
${_('Please note: The {platform_name} support team is English speaking. While we will do our best to address your inquiry in any language, our responses will be in English.').format(
- platform_name=platform_name
+ platform_name=platform_name()
)}