summaryrefslogtreecommitdiffstats
path: root/silpa/common
diff options
context:
space:
mode:
authorSanthosh Thottingal <santhosh.thottingal@gmail.com>2009-05-24 13:04:44 +0530
committerSanthosh Thottingal <santhosh.thottingal@gmail.com>2009-05-24 13:04:44 +0530
commit30c1b89bec818490131780389c918f8bcfb7aef6 (patch)
treed0a5b076a8781247932e7b507124705f9f3e2f03 /silpa/common
parent5a2dfd79178371a529053795d90b48dd96421d88 (diff)
downloadRachana.git-30c1b89bec818490131780389c918f8bcfb7aef6.tar.gz
Rachana.git-30c1b89bec818490131780389c918f8bcfb7aef6.tar.xz
Rachana.git-30c1b89bec818490131780389c918f8bcfb7aef6.zip
Miscellaneous bug fixes, hit counter, static pages
Diffstat (limited to 'silpa/common')
-rwxr-xr-x[-rw-r--r--]silpa/common/silparesponse.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/silpa/common/silparesponse.py b/silpa/common/silparesponse.py
index 13cc5ca..5bd8af3 100644..100755
--- a/silpa/common/silparesponse.py
+++ b/silpa/common/silparesponse.py
@@ -18,6 +18,9 @@ class SilpaResponse:
html= "<div id=\"breadcrumb\"><a href=\"http://smc.org.in/silpa\">Home</a> /"
html=html+navPath+"</div>"
self.response=self.response.replace("$$SILPA_BREADCRUMB$$",html)
+ else:
+ html= "<div id=\"breadcrumb\"><a href=\"http://smc.org.in/silpa\">Home</a></div>"
+ self.response=self.response.replace("$$SILPA_BREADCRUMB$$",html)
def setContent(self,value):
if(value):
self.response=self.response.replace("$$SILPA_CONTENT$$",value)