Skip to content

Commit

Permalink
Now decoding routed URL parameters re: Ticket #45
Browse files Browse the repository at this point in the history
  • Loading branch information
KrisJordan committed Dec 8, 2008
1 parent c5b9c97 commit e819aa3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 220 deletions.
219 changes: 0 additions & 219 deletions recess/lib/recess/framework/routing/RoutingNode.class.php

This file was deleted.

2 changes: 1 addition & 1 deletion recess/lib/recess/framework/routing/RtNode.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ private function findRouteRecursively(&$pathParts, $index, &$method) {
$result = $child->findRouteRecursively($pathParts, $index - 1, $method);
if($result->routeExists) {
if($child->c != '') {
$result->arguments[$child->c] = $nextPart;
$result->arguments[$child->c] = urldecode($nextPart);
}
return $result;
}
Expand Down

0 comments on commit e819aa3

Please sign in to comment.