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

index b54ee95582ebd58321e783bf646ca09c56b23dd1..ff190bab32d6a5afae9b290003ece1bc2ac3b977 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 8a7368f3ae2dff42722c9c3d7f9046a0166c7bd7..0b8bec88219253afeb88d3c5255e750e66f10957 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))) {