Ignore:
Timestamp:
03/26/12 16:24:32 (12 years ago)
Author:
niltonneto
Message:

Ticket #2029 - Adicionada configuração para edição rápida de telefone.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/inc/class.db_functions.inc.php

    r5819 r5821  
    682682        } 
    683683 
     684                function write_log($action, $about) 
     685                { 
     686                        $sql = "INSERT INTO phpgw_expressoadmin_log (date, manager, action, userinfo) " 
     687                                . "VALUES('now','" . $_SESSION['phpgw_info']['expressomail']['user']['account_lid'] . "','" . strtolower($action) . "','" . strtolower($about) . "')"; 
     688                        if (!$this->db->query($sql)) { 
     689                        return false; 
     690                } 
     691        return true; 
     692       } 
    684693} 
    685694?> 
Note: See TracChangeset for help on using the changeset viewer.