id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
262	Config/Hierarchy Breaks Control Autoloads	tomierna		"I'm migrating a 0.3.43 QCodo installation to QCubed 1.1 (SVN 242, checked out 5/22/09)

In debugging the issues you'd normally expect, I found that the custom controls I had loaded in 'includes/qcubed/controls' weren't autoloading.

I found that line 423 in QApplicationBase.class.php read:

{{{
} else if (file_exists($strFilePath = sprintf('%s/qcubed/%s.class.php', __QCUBED__, $strClassName))) {
}}}
It probably should read:

{{{
         } else if (file_exists($strFilePath = sprintf('%s/controls/%s.class.php', __QCUBED__, $strClassName))) {
}}}
Perhaps this isn't the correct place to fix the problem, but I think it might be."	defect	closed	must	1.1	Framework		fixed	Autoload, QApplicationBase.class.php, controls, directory, hierarchy	
