Author: david
Date: Mon Dec 7 10:50:26 2009
New Revision: 4109
Log:
Fix copy & paste error from r2145.
Modified:
trunk/lib/vendor/symfony/lib/form/sfForm.class.php
Modified: trunk/lib/vendor/symfony/lib/form/sfForm.class.php
==============================================================================
--- trunk/lib/vendor/symfony/lib/form/sfForm.class.php Mon Dec 7 09:43:18
2009 (r4108)
+++ trunk/lib/vendor/symfony/lib/form/sfForm.class.php Mon Dec 7 10:50:26
2009 (r4109)
@@ -1025,12 +1025,12 @@
public function __unset($name)
{
unset(
- $this->widgetSchema[$offset],
- $this->validatorSchema[$offset],
- $this->defaults[$offset],
- $this->taintedValues[$offset],
- $this->values[$offset],
- $this->embeddedForms[$offset]
+ $this->widgetSchema[$name],
+ $this->validatorSchema[$name],
+ $this->defaults[$name],
+ $this->taintedValues[$name],
+ $this->values[$name],
+ $this->embeddedForms[$name]
);
$this->resetFormFields();
--
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" 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/qubit-commits?hl=en.