phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] property/class.boXport.php, 1.1.1.8


From: nomail
Subject: [Phpgroupware-cvs] property/class.boXport.php, 1.1.1.8
Date: Sun, 23 May 2004 06:07:33 -0000

Update of /property
Modified Files:
        Branch: 
          class.boXport.php

date: 2004/05/04 11:34:26;  author: sigurdne;  state: Exp;  lines: +8 -8

Log Message:
no message
=====================================================================
Index: property/class.boXport.php
diff -u property/class.boXport.php:1.1.1.7 property/class.boXport.php:1.1.1.8
--- property/class.boXport.php:1.1.1.7  Fri Apr 30 09:52:25 2004
+++ property/class.boXport.php  Tue May  4 11:34:26 2004
@@ -94,11 +94,11 @@
 
                function select_import_conv($selected='')
                {
-                       $dir_handle = opendir(PHPGW_APP_INC . SEP . 'import');
+                       $dir_handle = opendir(PHPGW_ROOT. SEP . 'property' . 
SEP . 'import');
                        $i=0; $myfilearray = '';
                        while ($file = readdir($dir_handle))
                        {
-                               if ((substr($file, 0, 1) != '.') && 
is_file(PHPGW_APP_INC . SEP . 'import' . SEP . $file) )
+                               if ((substr($file, 0, 1) != '.') && 
is_file(PHPGW_ROOT. SEP . 'property' . SEP . 'import' . SEP . $file) )
                                {
                                        $myfilearray[$i] = $file;
                                        $i++;
@@ -138,11 +138,11 @@
 
                function select_export_conv($selected='')
                {
-                       $dir_handle = opendir(PHPGW_APP_INC . SEP . 'export');
+                       $dir_handle = opendir(PHPGW_ROOT. SEP . 'property' . 
SEP . 'export');
                        $i=0; $myfilearray = '';
                        while ($file = readdir($dir_handle))
                        {
-                               if ((substr($file, 0, 1) != '.') && 
is_file(PHPGW_APP_INC . SEP . 'export' . SEP . $file) )
+                               if ((substr($file, 0, 1) != '.') && 
is_file(PHPGW_ROOT. SEP . 'property' . SEP . 'export' . SEP . $file) )
                                {
                                        $myfilearray[$i] = $file;
                                        $i++;
@@ -229,7 +229,7 @@
 
                function import($invoice_common,$download)
                {
-                       include (PHPGW_APP_INC . '/import/' . 
$invoice_common['conv_type']);
+                       include (PHPGW_ROOT. SEP . 'property' . '/import/' . 
$invoice_common['conv_type']);
                        $invoice = new import_conv;
 
                        $buffer = $invoice->import($invoice_common,$download);
@@ -248,7 +248,7 @@
 
                function export($conv_type,$download)
                {
-                       include (PHPGW_APP_INC . '/export/' . $conv_type);
+                       include (PHPGW_ROOT. SEP . 'property' . '/export/' . 
$conv_type);
                        $invoice = new export_conv;
 
                        $buffer = $invoice->overfor($download);
@@ -260,7 +260,7 @@
 
                function rollback($conv_type,$role_back_date,$rollback_file)
                {
-                       include (PHPGW_APP_INC . '/export/' . $conv_type);
+                       include (PHPGW_ROOT. SEP . 'property' . '/export/' . 
$conv_type);
                        $invoice = new export_conv;
                        $buffer = 
$invoice->RullTilbake($role_back_date,$rollback_file);
                        return $buffer;




reply via email to

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