Changeset 9256
- Timestamp:
- 08/14/08 11:24:49 (4 months ago)
- Files:
-
- branches/0.8/jaws/html/include/Jaws/URLMapping.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/0.8/jaws/html/include/Jaws/URLMapping.php
r9118 r9256 467 467 if (is_array($params)) { 468 468 foreach ($params as $key => $value) { 469 $url = str_replace('{' . $key . '}', urlencode($value), $url); 469 $value = implode('/', array_map('urlencode', explode('/', $value))); 470 $url = str_replace('{' . $key . '}', $value, $url); 470 471 } 471 472 }
