Changeset 4214
- Timestamp:
- 06/13/07 16:37:10 (6 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfSimplePageControllerPlugin/lib/sfSimplePageArea.php
r4074 r4214 114 114 } 115 115 116 sfConfig::set('sf_simplepage_current_area', $this->areaName); 117 116 118 $output = ''; 117 119 118 120 foreach ($this->contents as $label => $part) 119 121 { 122 sfConfig::set('sf_simplepage_current_child', $label); 123 120 124 switch ($part['type']) { 121 125 case self::ACTION: … … 133 137 } 134 138 139 sfConfig::set('sf_simplepage_current_area', false); 140 sfConfig::set('sf_simplepage_current_child', false); 141 135 142 return $output; 136 143 }