summaryrefslogtreecommitdiff
path: root/password.php
diff options
context:
space:
mode:
Diffstat (limited to 'password.php')
-rw-r--r--password.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/password.php b/password.php
index e3a8721..430a355 100644
--- a/password.php
+++ b/password.php
@@ -21,17 +21,13 @@
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 */
isset($_POST['submitted']) ? define('POST_SUBMITTED', $_POST['submitted']): define('POST_SUBMITTED', '');
isset($_POST['username']) ? define('POST_USERNAME', $_POST['username']): define('POST_USERNAME', '');
isset($_POST['email']) ? define('POST_EMAIL', $_POST['email']): define('POST_EMAIL', '');
-
-$tplVars = array();
-
// IF SUBMITTED
if (POST_SUBMITTED != '') {