phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] CVS: developer_tools/inc class.solangfile.inc.php,1.


From: Ralf Becker <address@hidden>
Subject: [Phpgroupware-cvs] CVS: developer_tools/inc class.solangfile.inc.php,1.13,1.14
Date: Fri, 28 Feb 2003 10:35:23 -0500

Update of /cvsroot/phpgroupware/developer_tools/inc
In directory subversions:/tmp/cvs-serv28300

Modified Files:
        class.solangfile.inc.php 
Log Message:
killed an anoying warning

Index: class.solangfile.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/developer_tools/inc/class.solangfile.inc.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** class.solangfile.inc.php    4 Jul 2002 23:41:40 -0000       1.13
--- class.solangfile.inc.php    28 Feb 2003 15:35:21 -0000      1.14
***************
*** 40,44 ****
                        while ($fn=$d->read())
                        {
!                               if (is_dir($fd.$fn.SEP))
                                {
                                        if 
(($fn!='.')&&($fn!='..')&&($fn!='CVS'))
--- 40,44 ----
                        while ($fn=$d->read())
                        {
!                               if (@is_dir($fd.$fn.SEP))
                                {
                                        if 
(($fn!='.')&&($fn!='..')&&($fn!='CVS'))
***************
*** 193,197 ****
                        $fd = PHPGW_SERVER_ROOT . SEP . $app . SEP . 'setup';
                        $fn = $fd . SEP . 'phpgw_' . $userlang . '.lang';
!                       if (is_writeable($fn))
                        {
                                $wr = True;
--- 193,197 ----
                        $fd = PHPGW_SERVER_ROOT . SEP . $app . SEP . 'setup';
                        $fn = $fd . SEP . 'phpgw_' . $userlang . '.lang';
!                       if (@is_writeable($fn))
                        {
                                $wr = True;
***************
*** 273,277 ****
                        $fn = PHPGW_SERVER_ROOT . SEP . $app_name . SEP . 
'setup' . SEP . 'phpgw_' . $userlang . '.lang';
                        $fp = fopen($fn,'wb');
!                       while(list($mess_id,$data) = each($langarray))
                        {
                                fwrite($fp,$mess_id . "\t" . $data['app_name'] 
. "\t" . $userlang . "\t" . $data['content'] . "\n");
--- 273,277 ----
                        $fn = PHPGW_SERVER_ROOT . SEP . $app_name . SEP . 
'setup' . SEP . 'phpgw_' . $userlang . '.lang';
                        $fp = fopen($fn,'wb');
!                       while(list($mess_id,$data) = @each($langarray))
                        {
                                fwrite($fp,$mess_id . "\t" . $data['app_name'] 
. "\t" . $userlang . "\t" . $data['content'] . "\n");





reply via email to

[Prev in Thread] Current Thread [Next in Thread]