aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Controllers
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/Application/Controllers')
-rw-r--r--h-source/Application/Controllers/ClientController.php7
-rw-r--r--h-source/Application/Controllers/UsersController.php11
2 files changed, 7 insertions, 11 deletions
diff --git a/h-source/Application/Controllers/ClientController.php b/h-source/Application/Controllers/ClientController.php
index e0ff37e..51966c9 100644
--- a/h-source/Application/Controllers/ClientController.php
+++ b/h-source/Application/Controllers/ClientController.php
@@ -30,12 +30,19 @@ class ClientController extends BaseController
public function licenseinfo($lang = 'en')
{
+ header ("Content-Type:text/xml");
+
+ $data["xml"] = "<?xml version='1.0' encoding='UTF-8'?>\n";
+
+ $this->append($data);
$this->clean();
$this->load("license");
}
public function userinfo($lang = 'en')
{
+ header ("Content-Type:text/xml");
+
$this->s['registered']->checkStatus();
$data['user_status'] = strcmp($this->islogged,'yes') === 0 ? 'logged' : 'not-logged';
diff --git a/h-source/Application/Controllers/UsersController.php b/h-source/Application/Controllers/UsersController.php
index 651b371..b8fe57e 100644
--- a/h-source/Application/Controllers/UsersController.php
+++ b/h-source/Application/Controllers/UsersController.php
@@ -118,17 +118,6 @@ class UsersController extends BaseController
$this->load('logout');
}
-// public function info($lang = 'en')
-// {
-// $this->s['registered']->checkStatus();
-//
-// $data['user_status'] = strcmp($this->islogged,'yes') === 0 ? 'logged' : 'not-logged';
-//
-// $this->append($data);
-// $this->clean();
-// $this->load('info');
-// }
-
public function add($lang = 'en')
{
$data['title'] = 'create account - '.Website::$generalName;