Skip to content
Snippets Groups Projects
Commit 333523d1 authored by Prasad's avatar Prasad
Browse files

Added protection to SMSNotifier credential

parent 3f6affd6
No related branches found
No related tags found
1 merge request!1update
......@@ -271,7 +271,8 @@ class SMSNotifierManager {
foreach($parameters as $k=>$v) {
$provider->setParameter($k, $v);
}
$provider->setAuthParameters($resultrow['username'], $resultrow['password']);
$password = Vtiger_Functions::fromProtectedText($resultrow['password']);
$provider->setAuthParameters($resultrow['username'], $password);
return $provider;
}
......
......@@ -121,7 +121,14 @@ class Settings_SMSNotifier_Record_Model extends Settings_Vtiger_Record_Model {
public function save() {
$db = PearDatabase::getInstance();
$params = array($this->get('providertype'), $this->get('isactive'), $this->get('username'), $this->get('password'), $this->get('parameters'));
$password = $this->get('password');
if ($id && !Vtiger_Functions::isProtectedText($password)) {
$password = Vtiger_Functions::toProtectedText($password);
} else {
$password = Vtiger_Functions::toProtectedText($password);
}
$params = array($this->get('providertype'), $this->get('isactive'), $this->get('username'), $password, $this->get('parameters'));
$id = $this->getId();
if ($id) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment