[snowy] Add missing quotes in MEDIA_URL



commit 9d4671b23aba31583d22e59707f3fcaf487ff056
Author: Leho Kraav <leho kraav com>
Date:   Mon Jun 27 05:18:34 2011 -0700

    Add missing quotes in MEDIA_URL
    
    Fixes https://bugzilla.gnome.org/show_bug.cgi?id=653471

 accounts/templates/accounts/login.html |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/accounts/templates/accounts/login.html b/accounts/templates/accounts/login.html
index 12b165b..4b85253 100644
--- a/accounts/templates/accounts/login.html
+++ b/accounts/templates/accounts/login.html
@@ -7,7 +7,7 @@
 <script type="text/javascript" src="{{ MEDIA_URL }}js/accounts/openid-config.js"></script>
 <script type="text/javascript">
     // set the media URL to insert openid provider images in js
-    var MEDIA_URL = {{ MEDIA_URL }};
+    var MEDIA_URL = "{{ MEDIA_URL }}";
 </script>
 <script type="text/javascript" src="{{ MEDIA_URL }}js/accounts/login.js"></script>
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]