Ignore:
Timestamp:
02/08/13 16:25:07 (11 years ago)
Author:
alexandrecorreia
Message:

Ticket #2507 - Retira os caracteres especiais dentro do nome e do campo descricao

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/webservice/api/rest/admin/UpdateUserResource.php

    r7813 r7880  
    2828                                $loginUser              = trim($this->getParam('accountLogin')); 
    2929                                $emailUser              = trim($this->getParam('accountEmail')); 
    30                                 $nameUser               = trim($this->getParam('accountName')); 
     30                                $nameUser               = $common->convertChar(trim($this->getParam('accountName'))); 
    3131                                $passwordUser   = trim($this->getParam('accountPassword')); 
    3232                                $rePasswordUser = trim($this->getParam('accountRePassword')); 
     
    3535                                $rgUser                 = trim($this->getParam('accountRg')); 
    3636                                $rgUF                   = trim($this->getParam('accountRgUf')); 
    37                                 $description    = trim($this->getParam('accountDescription')); 
     37                                $description    = $common->convertChar(trim($this->getParam('accountDescription'))); 
    3838 
    3939                                // Field Validation 
Note: See TracChangeset for help on using the changeset viewer.