1
0
Fork 0

Continued with coding convention:

- added curly braces around conditional code blocks
- added space between if/foreach/... and brace
- made some SQL keywords upper-cased and added back-ticks to columns/table names

Signed-off-by: Roland Haeder <roland@mxchange.org>
This commit is contained in:
Roland Häder 2016-12-20 21:31:05 +01:00
commit 536f078ed4
No known key found for this signature in database
GPG key ID: B72F8185C6C7BD78
9 changed files with 78 additions and 56 deletions

View file

@ -646,8 +646,9 @@ function item_post(App &$a) {
intval($mtch)
);
if (dbm::is_result($r)) {
if(strlen($attachments))
if (strlen($attachments)) {
$attachments .= ',';
}
$attachments .= '[attach]href="' . App::get_baseurl() . '/attach/' . $r[0]['id'] . '" length="' . $r[0]['filesize'] . '" type="' . $r[0]['filetype'] . '" title="' . (($r[0]['filename']) ? $r[0]['filename'] : '') . '"[/attach]';
}
$body = str_replace($match[1],'',$body);
@ -656,14 +657,17 @@ function item_post(App &$a) {
$wall = 0;
if($post_type === 'wall' || $post_type === 'wall-comment')
if ($post_type === 'wall' || $post_type === 'wall-comment') {
$wall = 1;
}
if(! strlen($verb))
if (! strlen($verb)) {
$verb = ACTIVITY_POST ;
}
if ($network == "")
if ($network == "") {
$network = NETWORK_DFRN;
}
$gravity = (($parent) ? 6 : 0 );
@ -677,8 +681,9 @@ function item_post(App &$a) {
$uri = (($message_id) ? $message_id : item_new_uri($a->get_hostname(),$profile_uid, $guid));
// Fallback so that we alway have a thr-parent
if(!$thr_parent)
if (!$thr_parent) {
$thr_parent = $uri;
}
$datarray = array();
$datarray['uid'] = $profile_uid;