mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 00:45:14 +02:00
added spaces + some curly braces + some usage of dbm::is_result()
Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
720e7d6034
commit
0cd241bcbe
92 changed files with 1190 additions and 1087 deletions
|
@ -7,7 +7,7 @@ function wall_attach_post(App $a) {
|
|||
|
||||
$r_json = (x($_GET,'response') && $_GET['response']=='json');
|
||||
|
||||
if($a->argc > 1) {
|
||||
if ($a->argc > 1) {
|
||||
$nick = $a->argv[1];
|
||||
$r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1",
|
||||
dbesc($nick)
|
||||
|
@ -36,20 +36,20 @@ function wall_attach_post(App $a) {
|
|||
$page_owner_nick = $r[0]['nickname'];
|
||||
$community_page = (($r[0]['page-flags'] == PAGE_COMMUNITY) ? true : false);
|
||||
|
||||
if((local_user()) && (local_user() == $page_owner_uid))
|
||||
if ((local_user()) && (local_user() == $page_owner_uid))
|
||||
$can_post = true;
|
||||
else {
|
||||
if($community_page && remote_user()) {
|
||||
if ($community_page && remote_user()) {
|
||||
$contact_id = 0;
|
||||
if(is_array($_SESSION['remote'])) {
|
||||
foreach($_SESSION['remote'] as $v) {
|
||||
if($v['uid'] == $page_owner_uid) {
|
||||
if (is_array($_SESSION['remote'])) {
|
||||
foreach ($_SESSION['remote'] as $v) {
|
||||
if ($v['uid'] == $page_owner_uid) {
|
||||
$contact_id = $v['cid'];
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if($contact_id) {
|
||||
if ($contact_id) {
|
||||
|
||||
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
|
||||
intval($contact_id),
|
||||
|
@ -62,7 +62,7 @@ function wall_attach_post(App $a) {
|
|||
}
|
||||
}
|
||||
}
|
||||
if(! $can_post) {
|
||||
if (! $can_post) {
|
||||
if ($r_json) {
|
||||
echo json_encode(array('error'=>t('Permission denied.')));
|
||||
killme();
|
||||
|
@ -71,7 +71,7 @@ function wall_attach_post(App $a) {
|
|||
killme();
|
||||
}
|
||||
|
||||
if(! x($_FILES,'userfile')) {
|
||||
if (! x($_FILES,'userfile')) {
|
||||
if ($r_json) {
|
||||
echo json_encode(array('error'=>t('Invalid request.')));
|
||||
}
|
||||
|
@ -90,7 +90,7 @@ function wall_attach_post(App $a) {
|
|||
* Then Filesize gets <= 0.
|
||||
*/
|
||||
|
||||
if($filesize <=0) {
|
||||
if ($filesize <=0) {
|
||||
$msg = t('Sorry, maybe your upload is bigger than the PHP configuration allows') . EOL .(t('Or - did you try to upload an empty file?'));
|
||||
if ($r_json) {
|
||||
echo json_encode(array('error'=>$msg));
|
||||
|
@ -101,7 +101,7 @@ function wall_attach_post(App $a) {
|
|||
killme();
|
||||
}
|
||||
|
||||
if(($maxfilesize) && ($filesize > $maxfilesize)) {
|
||||
if (($maxfilesize) && ($filesize > $maxfilesize)) {
|
||||
$msg = sprintf(t('File exceeds size limit of %s'), formatBytes($maxfilesize));
|
||||
if ($r_json) {
|
||||
echo json_encode(array('error'=>$msg));
|
||||
|
@ -154,7 +154,7 @@ function wall_attach_post(App $a) {
|
|||
|
||||
@unlink($src);
|
||||
|
||||
if(! $r) {
|
||||
if (! $r) {
|
||||
$msg = t('File upload failed.');
|
||||
if ($r_json) {
|
||||
echo json_encode(array('error'=>$msg));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue