source: branches/2.2/reports1_0/inc/load_lang.php @ 3471

Revision 3471, 304 bytes checked in by eduardoalex, 13 years ago (diff)

Ticket #1216 - Incorporacao do modulo de relatorios ao ambiente.

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