Changeset 6519 for sandbox


Ignore:
Timestamp:
06/15/12 14:19:35 (12 years ago)
Author:
gustavo
Message:

Ticket #2766 - implementacao da dfd0065 e correcao de bugs da dfd0099

Location:
sandbox/2.4.1-3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sandbox/2.4.1-3/expressoMail1_2/js/main.js

    r6512 r6519  
    7979                                id : parseInt(value.data[0].value), 
    8080                                name : value.data[1].value, 
    81                                 email : value.data[2].value, 
     81                                email : value.data[3].value, 
    8282                                value: value.data[1].value + " - " + value.data[2].value, 
    8383                                type: "P" 
  • sandbox/2.4.1-3/prototype/rest/catalog/GroupsResource.php

    r6512 r6519  
    8383                                $i->addData($d); 
    8484 
     85                                $d = new Data();                                 
     86                                $d->setName('email'); 
     87                                $d->setValue($value['email']); 
     88                                $d->setPrompt('Email do Grupo'); 
     89                                $d->setDataType('string'); 
     90                                $d->setMaxLength('100'); 
     91                                $d->setMinLength(null); 
     92                                $d->setRequired(true); 
     93                                $i->addData($d); 
     94                                 
    8595                                $l = new Link(); 
    8696 
Note: See TracChangeset for help on using the changeset viewer.