source: trunk/expressoAdmin1_2/inc/load_lang.php @ 1394

Revision 1394, 292 bytes checked in by rodsouza, 15 years ago (diff)

Ticket #478 - Alterada o valor do atributo de consulta do LDAP para o coringa

  • Property svn:executable set to *
RevLine 
[1394]1<?php
[415]2        $lang = array();
[493]3        if (!empty($_SESSION['phpgw_info']['expressoAdmin']['lang']))
[415]4        {
[493]5                foreach($_SESSION['phpgw_info']['expressoAdmin']['lang'] as $message_id=>$content)
6                {
7                        $lang[str_replace(" ", "_", (strtolower($message_id)) )] = $content;
8                }
[415]9        }
10        echo serialize($lang);
11        exit;
[1394]12?>
Note: See TracBrowser for help on using the repository browser.