Removing usage of up() and low() from core

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@8253 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
DarkAngelBGE 2009-07-23 21:04:40 +00:00
parent 8f61c666c2
commit 9eaad7528f
8 changed files with 42 additions and 42 deletions

View file

@ -66,7 +66,7 @@ class ApiShell extends Shell {
return $this->help();
}
$type = low($this->args[0]);
$type = strtolower($this->args[0]);
if (isset($this->paths[$type])) {
$path = $this->paths[$type];