// Get an instance of the helper
$app = call_user_func_array(
- array($cfg->getConfigEntry('app_helper_class'), 'getInstance'),
+ array($cfg->getConfigEntry('app_helper_class'), 'getSelfInstance'),
array()
);
// Is there an application helper instance? We need the method main() for
// maining the application
-$app = call_user_func_array(array(FrameworkConfiguration::getSelfInstance()->getConfigEntry('app_helper_class'), 'getInstance'), array());
+$app = call_user_func_array(array(FrameworkConfiguration::getSelfInstance()->getConfigEntry('app_helper_class'), 'getSelfInstance'), array());
// Some sanity checks
if ((empty($app)) || (is_null($app))) {