hubloc manage issue

This commit is contained in:
friendica 2015-01-21 18:34:15 -08:00
parent 0b6415e73d
commit 8472e706bc

View file

@ -24,7 +24,7 @@ function locs_post(&$a) {
intval(HUBLOC_FLAGS_PRIMARY), intval(HUBLOC_FLAGS_PRIMARY),
dbesc($channel['channel_hash']) dbesc($channel['channel_hash'])
); );
$r = q("update hubloc set hubloc_flags = (hubloc_flags & %d) where hubloc_id = %d and hubloc_hash = '%s'", $r = q("update hubloc set hubloc_flags = (hubloc_flags | %d) where hubloc_id = %d and hubloc_hash = '%s'",
intval(HUBLOC_FLAGS_PRIMARY), intval(HUBLOC_FLAGS_PRIMARY),
intval($hubloc_id), intval($hubloc_id),
dbesc($channel['channel_hash']) dbesc($channel['channel_hash'])
@ -36,12 +36,14 @@ function locs_post(&$a) {
if($_REQUEST['drop']) { if($_REQUEST['drop']) {
$hubloc_id = intval($_REQUEST['drop']); $hubloc_id = intval($_REQUEST['drop']);
if($hubloc_id) { if($hubloc_id) {
$r = q("select hubloc_id, hubloc_flags from hubloc where hubloc_id = %d and hubloc_url != '%s' and hubloc_hash = '%s' limit 1", $r = q("select hubloc_id, hubloc_flags from hubloc where hubloc_id = %d and hubloc_url != '%s' and hubloc_hash = '%s' limit 1",
intval($hubloc_id), intval($hubloc_id),
dbesc(z_root()), dbesc(z_root()),
dbesc($channel['channel_hash']) dbesc($channel['channel_hash'])
); );
if(! $r) { if(! $r) {
notice( t('Location not found.') . EOL); notice( t('Location not found.') . EOL);
return; return;
@ -50,7 +52,7 @@ function locs_post(&$a) {
notice( t('Primary location cannot be removed.') . EOL); notice( t('Primary location cannot be removed.') . EOL);
return; return;
} }
$r = q("update hubloc set hubloc_flags = (hubloc_flags & %d) where hubloc_id = %d and hubloc_hash = '%s'", $r = q("update hubloc set hubloc_flags = (hubloc_flags | %d) where hubloc_id = %d and hubloc_hash = '%s'",
intval(HUBLOC_FLAGS_DELETED), intval(HUBLOC_FLAGS_DELETED),
intval($hubloc_id), intval($hubloc_id),
dbesc($channel['channel_hash']) dbesc($channel['channel_hash'])