Changeset 76
- Timestamp:
- 05/23/06 14:25:25 (2 years ago)
- Files:
-
- branches/2.2/classes/phing/parser/TaskHandler.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.2/classes/phing/parser/TaskHandler.php
r1 r76 165 165 $this->wrapper = $this->task->getRuntimeConfigurableWrapper(); 166 166 $this->wrapper->setAttributes($attrs); 167 /* 168 Commenting this out as per thread on Premature configurate of ReuntimeConfigurables 169 with Matthias Pigulla: http://phing.tigris.org/servlets/ReadMsg?list=dev&msgNo=251 170 167 171 if ($this->parentWrapper !== null) { // this may not make sense only within this if-block, but it 168 172 // seems to address current use cases adequately 169 173 $this->parentWrapper->addChild($this->wrapper); 170 174 } 175 */ 171 176 } else { 172 177 $this->task->init(); … … 179 184 */ 180 185 protected function finished() { 181 if ($this->task !== null && $this->target === null ) {186 if ($this->task !== null && $this->target === null && $this->container === null) { 182 187 try { 183 188 $this->task->main();
