[Oi-commits] r1359 - branches/stable/forum
oi-commits at pardus.org.tr
oi-commits at pardus.org.tr
Wed May 7 16:12:43 EEST 2008
Author: erenturkay
Date: Wed May 7 16:12:43 2008
New Revision: 1359
Modified:
branches/stable/forum/views.py
Log:
pfff
Modified: branches/stable/forum/views.py
=================================================================
--- branches/stable/forum/views.py (original)
+++ branches/stable/forum/views.py Wed May 7 16:12:43 2008
@@ -235,7 +235,7 @@
# send emails to me, at least I'm the only one who are willing to follow the forum via email :)
for user in User.objects.filter(is_staff=1):
if user.username == 'Eren':
- email_list.add(user.email)# send mailing list also.
+ email_list.append(user.email)# send mailing list also.
send_mail_with_header('Re: %s' % topic.title,
'%s\n%s<br /><br /><a href="%s">%s</a>' % (css, render_bbcode(form.cleaned_data['text']), post_url, post_url),
@@ -333,7 +333,7 @@
# send emails to me, at least I'm the only one who are willing to follow the forum via email :)
for user in User.objects.filter(is_staff=1):
if user.username == 'Eren':
- email_list.add(user.email)
+ email_list.append(user.email)
# send e-mail to mailing list. We really rock, yeah!
send_mail_with_header('%s' % topic.title,
More information about the Oi-commits
mailing list