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

index ada5d311c3e21a0c012f6275a9950a756421bec2..0d7ae5c93b9d9df63b44a1cf8ce2cb87857d367a 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 c7e72156cdf37e687fdc2b5b8286da24cdc7c984..f423a93fbdaab90e9ae9c6419ee6993a8f931abc 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))) {