diff options
Diffstat (limited to 'www/index.php')
-rw-r--r-- | www/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/index.php b/www/index.php index 28bf678..bc1b354 100644 --- a/www/index.php +++ b/www/index.php @@ -22,8 +22,8 @@ require_once '../src/SemanticScuttle/header.php'; /* Service creation: only useful services are created */ -$bookmarkservice =SemanticScuttle_Service_Factory::getServiceInstance('Bookmark'); -$cacheservice =SemanticScuttle_Service_Factory::getServiceInstance('Cache'); +$bookmarkservice =SemanticScuttle_Service_Factory::get('Bookmark'); +$cacheservice =SemanticScuttle_Service_Factory::get('Cache'); /* Managing all possible inputs */ isset($_GET['action']) ? define('GET_ACTION', $_GET['action']): define('GET_ACTION', ''); |