Revert "Coding convention applied - part 1"
This commit is contained in:
@@ -16,7 +16,8 @@ function post_post(App $a) {
|
||||
|
||||
if ($a->argc == 1) {
|
||||
$bulk_delivery = true;
|
||||
} else {
|
||||
}
|
||||
else {
|
||||
$nickname = $a->argv[2];
|
||||
$r = q("SELECT * FROM `user` WHERE `nickname` = '%s'
|
||||
AND `account_expired` = 0 AND `account_removed` = 0 LIMIT 1",
|
||||
@@ -33,17 +34,15 @@ function post_post(App $a) {
|
||||
|
||||
logger('mod-post: new zot: ' . $xml, LOGGER_DATA);
|
||||
|
||||
if (! $xml) {
|
||||
if(! $xml)
|
||||
http_status_exit(500);
|
||||
}
|
||||
|
||||
$msg = zot_decode($importer,$xml);
|
||||
|
||||
logger('mod-post: decoded msg: ' . print_r($msg,true), LOGGER_DATA);
|
||||
|
||||
if (! is_array($msg)) {
|
||||
if(! is_array($msg))
|
||||
http_status_exit(500);
|
||||
}
|
||||
|
||||
$ret = 0;
|
||||
$ret = zot_incoming($bulk_delivery, $importer,$msg);
|
||||
|
||||
Reference in New Issue
Block a user