Changeset 20606
- Timestamp:
- 07/30/09 16:22:31 (4 years ago)
- Files:
-
- branches/1.0/lib/view/sfPHPView.class.php (modified) (1 diff)
- branches/1.2/lib/view/sfPHPView.class.php (modified) (1 diff)
- branches/1.3/lib/view/sfPHPView.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.0/lib/view/sfPHPView.class.php
r7791 r20606 93 93 if ($_escaping === false || $_escaping === 'bc') 94 94 { 95 extract($this->attributeHolder->getAll()); 95 $vars = $this->attributeHolder->getAll(); 96 extract($vars); 96 97 } 97 98 branches/1.2/lib/view/sfPHPView.class.php
r11783 r20606 70 70 71 71 // EXTR_REFS can't be used (see #3595 and #3151) 72 extract($this->attributeHolder->toArray()); 72 $vars = $this->attributeHolder->toArray(); 73 extract($vars); 73 74 74 75 // render branches/1.3/lib/view/sfPHPView.class.php
r11783 r20606 70 70 71 71 // EXTR_REFS can't be used (see #3595 and #3151) 72 extract($this->attributeHolder->toArray()); 72 $vars = $this->attributeHolder->toArray(); 73 extract($vars); 73 74 74 75 // render