Also this ...
authorRoland Häder <roland@mxchange.org>
Tue, 8 Nov 2011 10:13:20 +0000 (10:13 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 8 Nov 2011 10:13:20 +0000 (10:13 +0000)
application/admin/data.php
application/admin/starter.php

index 2c24bcfb896e9f0ba2e1b4de1aecfb30bc4c28a8..ae32fff43e39a3a8ed16a11de211fa48da632f67 100644 (file)
@@ -38,7 +38,7 @@ $cfg = FrameworkConfiguration::getSelfInstance();
 
 // 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()
 );
 
index f95186b1e8ef2ec03bcf1473a3f2b95af4e096a5..3702525da76f50c90a5c06bbba53fd6f4b24c80d 100644 (file)
@@ -24,7 +24,7 @@
 
 // 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))) {