From 44cff00f50d0807c1777358e65cbaff131853067 Mon Sep 17 00:00:00 2001 From: Sarina Canelake Date: Tue, 28 Aug 2012 12:20:36 -0400 Subject: [PATCH] Fix display titles on video pages --- lms/templates/video.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/templates/video.html b/lms/templates/video.html index 93273ddb87..fcf25f3d69 100644 --- a/lms/templates/video.html +++ b/lms/templates/video.html @@ -1,5 +1,5 @@ -% if name is not UNDEFINED and name is not None: -

${display_name}

+% if display_name is not UNDEFINED and display_name is not None: +

${display_name}

% endif