website: don't waste db connection if loading page from cache
diff --git a/website/utils.py b/website/utils.py
index b38d2b3..e68a4f8 100644
--- a/website/utils.py
+++ b/website/utils.py
@@ -72,6 +72,7 @@
 		from_cache = True
 
 	if not html:
+		webnotes.connect()
 		html = load_into_cache(page_name)
 		from_cache = False