1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 23:48:47 +00:00
This commit is contained in:
xiez
2012-07-06 14:01:15 +08:00
parent fec1ea716f
commit 8cde7867eb

View File

@@ -25,7 +25,10 @@ subject = u'%s新消息' % site_name
site_base = settings.SITE_BASE
if site_base[-1] != '/':
site_base += '/'
url = site_base + 'home/my/'
site_root = settings.SITE_ROOT
if site_root[-1] != '/':
site_root += '/'
url = site_base + site_root + 'home/my/'
notifications = UserNotification.objects.all()