Changeset 7013
- Timestamp:
- 11/18/08 17:08:13 (7 weeks ago)
- Location:
- trunk
- Files:
-
- 2 modified
-
dispatcher.php (modified) (2 diffs)
-
library/suri.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/dispatcher.php
r7012 r7013 61 61 ); 62 62 Validator::validateArray($_SERVER, $basicIV); 63 /*if(isset($accessInfo)) {63 if(isset($accessInfo)) { 64 64 $basicIV = array( 65 65 'fullpath' => array('string'), … … 71 71 $accessInfo['fullpath'] = urldecode($accessInfo['fullpath']); 72 72 Validator::validateArray($accessInfo, $basicIV); 73 } */73 } 74 74 75 75 /* TODO: Database Initialization (if necessary) -
trunk/library/suri.php
r7007 r7013 64 64 } 65 65 if ($depth > 0) { 66 if($service['fancyURL'] === 0 || $service['fancyURL'] === 1) $url = '/'.$ accessInfo['input']; // Exclude /blog path.66 if($service['fancyURL'] === 0 || $service['fancyURL'] === 1) $url = '/'.$context->accessInfo['input']; // Exclude /blog path. 67 67 if (preg_match('@^((/+[^/]+){' . $depth . '})/*(.*)$@', $url, $matches)) { 68 68 $suri['directive'] = $matches[1];
