diff options
-rw-r--r-- | include/zot.php | 7 | ||||
-rw-r--r-- | version.inc | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/include/zot.php b/include/zot.php index 9addf80cf..7a2db3920 100644 --- a/include/zot.php +++ b/include/zot.php @@ -475,6 +475,9 @@ function import_xchan($arr) { return $ret; } + + logger('import_xchan: ' . $xchan_hash, LOGGER_DEBUG); + $r = q("select * from xchan where xchan_hash = '%s' limit 1", dbesc($xchan_hash) ); @@ -517,6 +520,10 @@ function import_xchan($arr) { dbesc($arr['url']), dbesc($xchan_hash) ); + + logger('import_xchan: existing: ' . print_r($r[0],true), LOGGER_DATA); + logger('import_xchan: new: ' . print_r($arr,true), LOGGER_DATA); + update_modtime($xchan_hash); $changed = true; } diff --git a/version.inc b/version.inc index fb48398ae..62a333604 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2013-04-28.297 +2013-04-29.298 |