$owner = $item['uid'];
- $cid = 0;
+ $contact_id = 0;
// check if logged in user is either the author or owner of this item
if (is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $visitor) {
if ($visitor['uid'] == $item['uid'] && $visitor['cid'] == $item['contact-id']) {
- $cid = $visitor['cid'];
+ $contact_id = $visitor['cid'];
break;
}
}
}
- if ((local_user() == $item['uid']) || ($cid) || (! $interactive)) {
+ if ((local_user() == $item['uid']) || ($contact_id) || (! $interactive)) {
// Check if we should do HTML-based delete confirmation
if ($_REQUEST['confirm']) {
$can_post = true;
else {
if ($community_page && remote_user()) {
- $cid = 0;
+ $contact_id = 0;
if (is_array($_SESSION['remote'])) {
foreach ($_SESSION['remote'] as $v) {
if ($v['uid'] == $page_owner_uid) {
- $cid = $v['cid'];
+ $contact_id = $v['cid'];
break;
}
}
}
- if ($cid) {
+ if ($contact_id) {
$r = qu("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
- intval($cid),
+ intval($contact_id),
intval($page_owner_uid)
);
if (dbm::is_result($r)) {
$can_post = true;
- $visitor = $cid;
+ $visitor = $contact_id;
}
}
}
$can_post = true;
$contact = $r[0];
$remote_contact = true;
- $visitor = $cid;
+ $visitor = $contact_id;
}
}
}
$can_post = true;
$contact = $r[0];
$remote_contact = true;
- $visitor = $cid;
+ $visitor = $contact_id;
}
}
}
);
if(! count($r)){
if ($r_json) {
- echo json_encode(array('error'=>t('Invalid request.')));
- killme();
- }
+ echo json_encode(array('error'=>t('Invalid request.')));
+ killme();
+ }
return;
- }
+ }
} else {
if ($r_json) {
- echo json_encode(array('error'=>t('Invalid request.')));
- killme();
- }
+ echo json_encode(array('error'=>t('Invalid request.')));
+ killme();
+ }
return;
- }
+ }
$can_post = false;
$visitor = 0;
$can_post = true;
else {
if($community_page && remote_user()) {
- $cid = 0;
+ $contact_id = 0;
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $v) {
if($v['uid'] == $page_owner_uid) {
- $cid = $v['cid'];
+ $contact_id = $v['cid'];
break;
}
}
}
- if($cid) {
+ if($contact_id) {
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
- intval($cid),
+ intval($contact_id),
intval($page_owner_uid)
);
if(count($r)) {
$can_post = true;
- $visitor = $cid;
+ $visitor = $contact_id;
}
}
}
}
if(! $can_post) {
if ($r_json) {
- echo json_encode(array('error'=>t('Permission denied.')));
- killme();
- }
+ echo json_encode(array('error'=>t('Permission denied.')));
+ killme();
+ }
notice( t('Permission denied.') . EOL );
killme();
}
if(! x($_FILES,'userfile')) {
if ($r_json) {
- echo json_encode(array('error'=>t('Invalid request.')));
- }
+ echo json_encode(array('error'=>t('Invalid request.')));
+ }
killme();
}
}
if ($r_json) {
- echo json_encode(array('ok'=>true));
- killme();
- }
+ echo json_encode(array('ok'=>true));
+ killme();
+ }
$lf = "\n";
if(! count($r)){
if ($r_json) {
- echo json_encode(array('error'=>t('Invalid request.')));
- killme();
+ echo json_encode(array('error'=>t('Invalid request.')));
+ killme();
}
return;
}
}
} else {
if ($r_json) {
- echo json_encode(array('error'=>t('Invalid request.')));
- killme();
+ echo json_encode(array('error'=>t('Invalid request.')));
+ killme();
}
return;
}
$can_post = true;
else {
if($community_page && remote_user()) {
- $cid = 0;
+ $contact_id = 0;
if(is_array($_SESSION['remote'])) {
foreach($_SESSION['remote'] as $v) {
if($v['uid'] == $page_owner_uid) {
- $cid = $v['cid'];
+ $contact_id = $v['cid'];
break;
}
}
}
- if($cid) {
+ if($contact_id) {
$r = q("SELECT `uid` FROM `contact` WHERE `blocked` = 0 AND `pending` = 0 AND `id` = %d AND `uid` = %d LIMIT 1",
- intval($cid),
+ intval($contact_id),
intval($page_owner_uid)
);
if(count($r)) {
$can_post = true;
- $visitor = $cid;
+ $visitor = $contact_id;
}
}
}
if(! $can_post) {
if ($r_json) {
- echo json_encode(array('error'=>t('Permission denied.')));
- killme();
+ echo json_encode(array('error'=>t('Permission denied.')));
+ killme();
}
notice( t('Permission denied.') . EOL );
killme();
if(! x($_FILES,'userfile') && ! x($_FILES,'media')){
if ($r_json) {
- echo json_encode(array('error'=>t('Invalid request.')));
+ echo json_encode(array('error'=>t('Invalid request.')));
}
killme();
}
if ($src=="") {
if ($r_json) {
- echo json_encode(array('error'=>t('Invalid request.')));
- killme();
+ echo json_encode(array('error'=>t('Invalid request.')));
+ killme();
}
notice(t('Invalid request.').EOL);
killme();
$r = q("SELECT `id`, `datasize`, `width`, `height`, `type` FROM `photo` WHERE `resource-id` = '%s' ORDER BY `width` DESC LIMIT 1", $hash);
if (!$r){
if ($r_json) {
- echo json_encode(array('error'=>''));
- killme();
+ echo json_encode(array('error'=>''));
+ killme();
}
return false;
}
$picture["preview"] = $a->get_baseurl()."/photo/{$hash}-{$smallest}.".$ph->getExt();
if ($r_json) {
- echo json_encode(array('picture'=>$picture));
- killme();
+ echo json_encode(array('picture'=>$picture));
+ killme();
}
return $picture;
}
if ($r_json) {
- echo json_encode(array('ok'=>true));
- killme();
+ echo json_encode(array('ok'=>true));
+ killme();
}
/* mod Waitman Gobble NO WARRANTY */