mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 17:18:54 +01:00
an other namespace fix
This commit is contained in:
parent
3ea15bf95c
commit
20da4e41bc
@ -14,6 +14,7 @@
|
|||||||
namespace EGroupware\Api\Db;
|
namespace EGroupware\Api\Db;
|
||||||
|
|
||||||
use EGroupware\Api;
|
use EGroupware\Api;
|
||||||
|
use ZipArchive;
|
||||||
|
|
||||||
use html;
|
use html;
|
||||||
|
|
||||||
@ -961,7 +962,7 @@ class Backup
|
|||||||
if (!empty($pk)) $max = $row[$pk];
|
if (!empty($pk)) $max = $row[$pk];
|
||||||
if ($total === 0) fwrite($f,"\ntable: $table\n".implode(',',array_keys($row))."\n");
|
if ($total === 0) fwrite($f,"\ntable: $table\n".implode(',',array_keys($row))."\n");
|
||||||
|
|
||||||
array_walk($row,array('db_backup','escape_data'),$schema['fd']);
|
array_walk($row, array(__CLASS__, 'escape_data'), $schema['fd']);
|
||||||
fwrite($f,implode(',',$row)."\n");
|
fwrite($f,implode(',',$row)."\n");
|
||||||
++$total;
|
++$total;
|
||||||
++$num_rows;
|
++$num_rows;
|
||||||
@ -1154,7 +1155,7 @@ class Backup
|
|||||||
$line = '"de","NULL","ranking",NULL,NULL,"one backslash: \\\\ here","\\\\","use \\"yes\\", or \\"no, prefession\\"","benützen Sie \\"yes\\" oder \\"no, Beruf\\"",NULL';
|
$line = '"de","NULL","ranking",NULL,NULL,"one backslash: \\\\ here","\\\\","use \\"yes\\", or \\"no, prefession\\"","benützen Sie \\"yes\\" oder \\"no, Beruf\\"",NULL';
|
||||||
|
|
||||||
echo "<p>line='$line'</p>\n";
|
echo "<p>line='$line'</p>\n";
|
||||||
$fields = db_backup::csv_split($line);
|
$fields = Backup::csv_split($line);
|
||||||
echo "<pre>".print_r($fields,true)."</pre>\n";
|
echo "<pre>".print_r($fields,true)."</pre>\n";
|
||||||
//echo count($fields)." fields\n";
|
//echo count($fields)." fields\n";
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user