Fix broken Site settings form by uncommenting code that was inadvertently
authorTodd Larsen <tlarsen@google.com>
Sat, 22 Nov 2008 08:40:10 +0000
changeset 544 10f9da7e0d17
parent 543 280a1ac6bcc1
child 545 217921e76f50
Fix broken Site settings form by uncommenting code that was inadvertently committed commented out. Patch by: Todd Larsen
app/soc/views/models/site.py
--- a/app/soc/views/models/site.py	Sat Nov 22 07:57:00 2008 +0000
+++ b/app/soc/views/models/site.py	Sat Nov 22 08:40:10 2008 +0000
@@ -54,9 +54,9 @@
     #: list of model fields which will *not* be gathered by the form
     exclude = ['inheritance_line', 'home', 'scope', 'scope_path', 'link_id']
 
-#  scope_path = forms.CharField(widget=forms.HiddenInput)
+  scope_path = forms.CharField(widget=forms.HiddenInput)
 
-#  link_id = forms.CharField(widget=forms.HiddenInput)
+  link_id = forms.CharField(widget=forms.HiddenInput)
 
 
 class EditForm(CreateForm):