From 580bc7c9228deaa500fcf26db35af1c4cea49e36 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Tue, 12 Nov 2013 11:50:00 +0530 Subject: [PATCH] [minor] favicon --- startup/webutils.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/startup/webutils.py b/startup/webutils.py index 218741be53..ee16c90668 100644 --- a/startup/webutils.py +++ b/startup/webutils.py @@ -23,4 +23,7 @@ def get_website_settings(context): context.update({ "shopping_cart_enabled": cart_enabled, "post_login": post_login + context.get("post_login", []) - }) \ No newline at end of file + }) + + if not context.get("favicon"): + context["favicon"] = "app/images/favicon.ico" \ No newline at end of file