Changeset 304
- Timestamp:
- 02/28/07 16:48:32 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/main/php/net/stubbles/star/StarStreamWrapper.php
r235 r304 154 154 $this->parsePath($path); 155 155 $current = self::acquire($this->archive); 156 return isset($current['index'][$this->id]); 156 if (isset($current['index'][$this->id]) == false) { 157 $this->parsePath(urldecode($path)); 158 $current = self::acquire($this->archive); 159 if (isset($current['index'][$this->id]) == false) { 160 return false; 161 } 162 } 163 164 return true; 157 165 } 158 166 … … 214 222 215 223 if (isset($current['index'][$this->id]) == false) { 216 return false; 224 $this->parsePath(urldecode($path)); 225 $current = self::acquire($this->archive); 226 if (isset($current['index'][$this->id]) == false) { 227 return false; 228 } 217 229 } 218 230
