issue #0000930 : Activate methode setParam

This commit is contained in:
Michael RICOIS 2013-03-21 09:27:34 +00:00
parent e0cf086458
commit bdd7ca2de1
2 changed files with 7 additions and 2 deletions

View File

@ -4,10 +4,15 @@ class Application_Model_Sdv1Utilisateurs extends Zend_Db_Table_Abstract
protected $_name = 'utilisateurs';
protected $_schema = 'sdv1';
protected $_referenceMap = array(
'Reporter' => array(
'Client' => array(
'columns' => 'idClient',
'refTableClass' => 'Sdv1Clients',
'refColumns' => 'id'
),
'Service' => array(
'columns' => 'login',
'refTableClass' => 'Sdv1UtilisateursService',
'refColumns' => 'login'
),
);
}

View File

@ -1829,7 +1829,7 @@ class Gestion extends WsScore
* @throws SoapFault
* @return boolean
*/
protected function setParam($element, $idClient, $service, $login=null)
public function setParam($element, $idClient, $service, $login=null)
{
$element = strtoupper($element);
if ( !in_array($element, array('IP', 'ACCESS')) ) {