From 20dfa5170278b0bda47efadbf846f8f7ab548d2f Mon Sep 17 00:00:00 2001 From: phpnut Date: Wed, 20 Jun 2007 07:49:50 +0000 Subject: [PATCH] Correcting class method names git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5314 3807eeeb-6ff5-0310-8944-8be069107fe0 --- cake/libs/folder.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cake/libs/folder.php b/cake/libs/folder.php index 0ce54352c..5788c0a6d 100644 --- a/cake/libs/folder.php +++ b/cake/libs/folder.php @@ -285,7 +285,7 @@ class Folder extends Object{ * @access public * @static */ - function correctSlashfor ($path) { + function correctSlashFor($path) { if ($this->isWindowsPath($path)) { return '\\'; } @@ -303,7 +303,7 @@ class Folder extends Object{ if ($this->isSlashTerm($path)) { return $path; } - return $path . $this->correctSlashfor ($path); + return $path . $this->correctSlashFor($path); } /** * Returns $path with $element added, with correct slash in-between.