Fixed missing includes

This commit is contained in:
yysa 2014-11-10 19:31:51 +01:00
parent d96dfdbc89
commit 09f83d42ad
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -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');
} }
} }