diff options
Diffstat (limited to 'www/tagrename.php')
-rw-r--r-- | www/tagrename.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/tagrename.php b/www/tagrename.php index 735e2e8..7222acf 100644 --- a/www/tagrename.php +++ b/www/tagrename.php @@ -22,9 +22,9 @@ require_once '../src/SemanticScuttle/header.php'; /* Service creation: only useful services are created */ -$b2tservice = SemanticScuttle_Service_Factory :: getServiceInstance('Bookmark2Tag'); -$tagservice = SemanticScuttle_Service_Factory :: getServiceInstance('Tag'); -$tag2tagservice = SemanticScuttle_Service_Factory :: getServiceInstance('Tag2Tag'); +$b2tservice = SemanticScuttle_Service_Factory :: get('Bookmark2Tag'); +$tagservice = SemanticScuttle_Service_Factory :: get('Tag'); +$tag2tagservice = SemanticScuttle_Service_Factory :: get('Tag2Tag'); /* Managing all possible inputs */ isset($_POST['confirm']) ? define('POST_CONFIRM', $_POST['confirm']): define('POST_CONFIRM', ''); |