Fixed missing includes
This commit is contained in:
parent
d96dfdbc89
commit
09f83d42ad
|
|
@ -6,6 +6,7 @@ include APP_CONFIG_PATH.'app.php'; // load up application specific settings (cus
|
||||||
// minimum needed classes
|
// minimum needed classes
|
||||||
include APP_CLASS_PATH.'helpable.php';
|
include APP_CLASS_PATH.'helpable.php';
|
||||||
include APP_HELPER_PATH.'string.php';
|
include APP_HELPER_PATH.'string.php';
|
||||||
|
include APP_CLASS_PATH.'model.php';
|
||||||
include APP_CLASS_PATH.'front.php';
|
include APP_CLASS_PATH.'front.php';
|
||||||
|
|
||||||
// start session
|
// start session
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,8 @@
|
||||||
* @copyright GNU Lesser General Public License (LGPL) version 3
|
* @copyright GNU Lesser General Public License (LGPL) version 3
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
include_once APP_CLASS_PATH.'pluginable.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Model
|
* Model
|
||||||
*
|
*
|
||||||
|
|
@ -1302,4 +1304,4 @@ class VarObj extends VarAbstract
|
||||||
throw new AppException('can not render object');
|
throw new AppException('can not render object');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue