Browse Source

BC break fix. get for forms is now getVar

Thanos Polymeneas 13 years ago
parent
commit
856b669612
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Util/FormViewIterator.php

+ 1 - 1
Util/FormViewIterator.php

@@ -61,7 +61,7 @@ class FormViewIterator implements \RecursiveIterator
      */
     public function key()
     {
-        return $this->current()->get('id');
+        return $this->current()->getVar('id');
     }
 
     /**