From 18093fde721aeb57682b1d669c33fd0abd1ebfa2 Mon Sep 17 00:00:00 2001
From: Marius Burkard <m.burkard@pixcept.de>
Date: Mon, 04 Jan 2016 05:28:16 -0500
Subject: [PATCH] - Fixed sql queries from previous merges
---
interface/lib/classes/remote.d/client.inc.php | 33 ---------------------------------
1 files changed, 0 insertions(+), 33 deletions(-)
diff --git a/interface/lib/classes/remote.d/client.inc.php b/interface/lib/classes/remote.d/client.inc.php
index e44fd82..8e1324e 100644
--- a/interface/lib/classes/remote.d/client.inc.php
+++ b/interface/lib/classes/remote.d/client.inc.php
@@ -683,39 +683,6 @@
return $returnval;
}
-
- public function client_activate($session_id, $params){
- global $app;
- /*
- if (!$this->checkPerm($session_id, 'client_update')){
- throw new SoapFault('permission_denied', 'You do not have the permissions to access this function.');
- return false;
- }
- */
-
- if(!is_file(ISPC_WEB_PATH.'/robot/lib/robot_config.inc.php')){
- throw new SoapFault('permission_denied', 'You do not have the permissions to access this function.');
- return false;
- }
-
- $client = $app->db->queryOneRecord("SELECT * FROM client WHERE customer_no = '".$app->db->quote($params['customer_no'])."' AND email = '".$app->db->quote($params['email'])."' AND activation_code = '".$app->db->quote($params['activation_code'])."' AND validation_status = 'review'");
- //file_put_contents('/tmp/test.txt', "SELECT * FROM client WHERE customer_no = '".$app->db->quote($params['customer_no'])."' AND email = '".$app->db->quote($params['email'])."' AND activation_code = '".$app->db->quote($params['activation_code'])."' AND validation_status = 'review'");
-
- if(is_array($client) && !empty($client)){
- $client_id = intval($client['client_id']);
-
- $app->functions->client_activate($client_id);
-
- return true;
- } else {
- $client = $app->db->queryOneRecord("SELECT * FROM client WHERE email = '".$app->db->quote($params['email'])."' AND validation_status = 'review'");
- if(is_array($client) && !empty($client)){
- $app->functions->client_activation_failed($client);
- }
- return false;
- }
- }
-
}
?>
--
Gitblit v1.9.1