move account. first step.

export basic account data as json
import basic account data in db (dbs must be at same schema version)
This commit is contained in:
Fabrixxm 2012-10-17 11:13:01 -04:00
commit 65d235017c
8 changed files with 465 additions and 32 deletions

View file

@ -233,7 +233,7 @@ function q($sql) {
if($db && $db->connected) {
$stmt = vsprintf($sql,$args);
if($stmt === false)
logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true));
logger('dba: vsprintf error: ' . print_r(debug_backtrace(),true), LOGGER_DEBUG);
return $db->q($stmt);
}