From 57bc0f9c457974378b708c79752a4ee1de26c389 Mon Sep 17 00:00:00 2001 From: mark_story Date: Fri, 23 Sep 2016 14:22:10 -0400 Subject: [PATCH] Ensure Object is autoloaded. When Object was renamed to CakeObject we broke behavior where plugins and app code were relying on Object being configured in the autoloader automatically. Refs cakephp/debug_kit#450 --- lib/Cake/bootstrap.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Cake/bootstrap.php b/lib/Cake/bootstrap.php index 666c1b7ff..bdd8db4b8 100644 --- a/lib/Cake/bootstrap.php +++ b/lib/Cake/bootstrap.php @@ -146,6 +146,7 @@ App::uses('Configure', 'Core'); App::uses('CakePlugin', 'Core'); App::uses('Cache', 'Cache'); App::uses('CakeObject', 'Core'); +App::uses('Object', 'Core'); App::uses('Multibyte', 'I18n'); App::$bootstrapping = true;