Author: jacob
Date: 2008-07-11 13:18:26 -0500 (Fri, 11 Jul 2008)
New Revision: 7898

Modified:
   djangoproject.com/django_website/apps/contact/forms.py
   djangoproject.com/django_website/settings.py
Log:
[djangoproject.com] A few fixes to the contact form


Modified: djangoproject.com/django_website/apps/contact/forms.py
===================================================================
--- djangoproject.com/django_website/apps/contact/forms.py      2008-07-11 
18:11:16 UTC (rev 7897)
+++ djangoproject.com/django_website/apps/contact/forms.py      2008-07-11 
18:18:26 UTC (rev 7898)
@@ -14,4 +14,4 @@
         return textwrap.wrap(self.cleaned_data["body"], 76)
 
 class FoundationContactForm(BaseContactForm):
-    pass
\ No newline at end of file
+    recipient_list = ["[EMAIL PROTECTED]"]
\ No newline at end of file

Modified: djangoproject.com/django_website/settings.py
===================================================================
--- djangoproject.com/django_website/settings.py        2008-07-11 18:11:16 UTC 
(rev 7897)
+++ djangoproject.com/django_website/settings.py        2008-07-11 18:18:26 UTC 
(rev 7898)
@@ -7,7 +7,7 @@
 TIME_ZONE = 'America/Chicago'
 
 SERVER_EMAIL = '[EMAIL PROTECTED]'
-MANAGERS = (('Wilson Miner','[EMAIL PROTECTED]'),)
+MANAGERS = (('Jacob Kaplan-Moss','[EMAIL PROTECTED]'),)
 
 DATABASE_ENGINE = 'postgresql_psycopg2'
 DATABASE_NAME = 'djangoproject'


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to