Skip to content

Commit

Permalink
phalcon#15067 - Removed uncamelize on router string parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
Aziz Muzafarov committed Nov 7, 2021
1 parent 0ff5b6f commit f66d0c8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions phalcon/Mvc/Router/Route.zep
Original file line number Diff line number Diff line change
Expand Up @@ -496,8 +496,7 @@ class Route implements RouteInterface
let realClassName = controllerName;
}

// Always pass the controller to lowercase
let routePaths["controller"] = uncamelize(realClassName);
let routePaths["controller"] = realClassName;
}

// Process action name
Expand Down

0 comments on commit f66d0c8

Please sign in to comment.