Changeset 607
- Timestamp:
- 04/23/07 16:50:38 (1 year ago)
- Files:
-
- trunk/lib/starReader.php (modified) (15 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/starReader.php
r235 r607 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 … … 250 262 ?><?php StarStreamWrapper::register(); ?><?php 251 263 require 'star://' . __FILE__ . '?net.stubbles.star.StarClassRegistry'; 252 ?><?php __halt_compiler();star1 20070206161833net.stubbles.star.StarClassRegistry
