Merge branch 'performance'

Conflicts:
	workflow/public_html/sysGeneric.php
This commit is contained in:
Erik Amaru Ortiz
2014-03-12 18:33:22 -04:00
19 changed files with 2826 additions and 888 deletions

View File

@@ -21,12 +21,12 @@ class Bootstrap
{
$className = strtolower($class);
if (array_key_exists($className, BootStrap::$includeClassPaths)) {
if (isset(BootStrap::$includeClassPaths[$className])) {
require_once BootStrap::$includeClassPaths[$className];
return true;
}
return false;
$classHasNamespaceSeparator = strpos($class, '\\') !== false ? true : false;
foreach (BootStrap::$includePaths as $path) {