diff options
author | zotlabs <mike@macgirvin.com> | 2016-12-30 02:31:53 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-12-30 02:32:53 -0800 |
commit | 03a1086ba36a6c30cea8cea178c26497ef879fd2 (patch) | |
tree | e1ebc7395314d47bffd71e88794fd75316be73d8 | |
parent | db9ea66069f2a2df6044e8267a68eae377c45911 (diff) | |
download | volse-hubzilla-03a1086ba36a6c30cea8cea178c26497ef879fd2.tar.gz volse-hubzilla-03a1086ba36a6c30cea8cea178c26497ef879fd2.tar.bz2 volse-hubzilla-03a1086ba36a6c30cea8cea178c26497ef879fd2.zip |
logger typos
-rw-r--r-- | include/import.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/import.php b/include/import.php index 0d8398acb..e3d3e7e81 100644 --- a/include/import.php +++ b/include/import.php @@ -86,7 +86,7 @@ function import_channel($channel, $account_id, $seize) { } if(! $r) { - logger('mod_import: channel clone failed. ', print_r($channel,true)); + logger('mod_import: channel clone failed. ' . print_r($channel,true)); notice( t('Channel clone failed. Import failed.') . EOL); return false; } @@ -96,7 +96,7 @@ function import_channel($channel, $account_id, $seize) { $channel['channel_guid'] // Already dbesc'd ); if(! $r) { - logger('mod_import: channel not found. ', print_r($channel,true)); + logger('mod_import: channel not found. ' . print_r($channel,true)); notice( t('Cloned channel not found. Import failed.') . EOL); return false; } |