Browse Source

Merge pull request #730 from dereuromark/2.3-missing-app-uses

another correction for app uses
Mark Story 13 years ago
parent
commit
f77bebcc38

+ 1 - 1
lib/Cake/Controller/Component/PaginatorComponent.php

@@ -16,7 +16,7 @@
  * @since         CakePHP(tm) v 2.0
  * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
  */
-App::uses('Component', 'Controller/Component');
+App::uses('Component', 'Controller');
 App::uses('Hash', 'Utility');
 
 /**

+ 1 - 1
lib/Cake/Controller/Component/RequestHandlerComponent.php

@@ -19,7 +19,7 @@
  * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
  */
 
-App::uses('Component', 'Controller/Component');
+App::uses('Component', 'Controller');
 App::uses('Xml', 'Utility');
 
 /**