Ignore:
Timestamp:
04/11/11 11:47:31 (13 years ago)
Author:
rafaelraymundo
Message:

Ticket #1593 - Criação de grupos usando contatos apartir do catalogo geral.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.0.1/contactcenter/inc/class.so_group.inc.php

    r3702 r3970  
    347347                function verifyContact($email) 
    348348                { 
    349                         $query = 'select A.names_ordered from phpgw_cc_contact A,'. 
     349                        $query = 'select A.names_ordered, C.id_connection from phpgw_cc_contact A,'. 
    350350                        'phpgw_cc_contact_conns B, phpgw_cc_connections C where '. 
    351351                        'A.id_contact = B.id_contact and B.id_connection = C.id_connection '. 
     
    363363                        { 
    364364                                $row = $this->db->row(); 
    365                                 $return[] =  $row['names_ordered'];  
     365                                $return[] =  $row['names_ordered']; 
     366                                $return[] =  $row['id_connection']; 
    366367                        } 
    367368                         
Note: See TracChangeset for help on using the changeset viewer.