diff options
Diffstat (limited to 'import.php')
-rw-r--r-- | import.php | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -22,9 +22,7 @@ require_once('header.inc.php'); /* Service creation: only useful services are created */ -$userservice =& ServiceFactory::getServiceInstance('UserService'); -$templateservice =& ServiceFactory::getServiceInstance('TemplateService'); - +// No specific services /* Managing all possible inputs */ // First input is $_FILES @@ -32,8 +30,6 @@ $templateservice =& ServiceFactory::getServiceInstance('TemplateService'); isset($_POST['status']) ? define('POST_STATUS', $_POST['status']): define('POST_STATUS', ''); -$tplVars = array(); - if ($userservice->isLoggedOn() && sizeof($_FILES) > 0 && $_FILES['userfile']['size'] > 0) { $userinfo = $userservice->getCurrentObjectUser(); @@ -72,7 +68,6 @@ function startElement($parser, $name, $attrs) { global $depth, $status, $tplVars, $userservice; $bookmarkservice =& ServiceFactory::getServiceInstance('BookmarkService'); - $userservice =& ServiceFactory::getServiceInstance('UserService'); if ($name == 'POST') { while(list($attrTitle, $attrVal) = each($attrs)) { |