Fix problem in import bank (fgetcsv has changed) and add ajax abilities

This commit is contained in:
sparkyx 2007-10-19 23:55:09 +00:00
parent 9714914c1c
commit fa0eb3fbdb
14 changed files with 213 additions and 51 deletions

View file

@ -35,7 +35,7 @@ function echo_debug ($file,$line="",$msg="") {
if ( DEBUG=='true' ) {
$f=fopen ($_ENV['TMP'].DIRECTORY_SEPARATOR."phpcompta.log","a+");
$a=var_export($msg,true);
$e=basename($file);
$e=basename($file);
fwrite($f,"$e : $line $a\n");
fclose ($f);
}