diff options
author | friendica <info@friendica.com> | 2015-01-21 18:34:15 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-21 18:34:15 -0800 |
commit | 8472e706bc8c2be81a4426586d511de21c919209 (patch) | |
tree | 6a39490f2db550694630fda32a91551213d7a01c /mod/locs.php | |
parent | 0b6415e73dc076bb2aebb1db92ed34ed5fe411b3 (diff) | |
download | volse-hubzilla-8472e706bc8c2be81a4426586d511de21c919209.tar.gz volse-hubzilla-8472e706bc8c2be81a4426586d511de21c919209.tar.bz2 volse-hubzilla-8472e706bc8c2be81a4426586d511de21c919209.zip |
hubloc manage issue
Diffstat (limited to 'mod/locs.php')
-rw-r--r-- | mod/locs.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/locs.php b/mod/locs.php index b1169fcca..7ca813c34 100644 --- a/mod/locs.php +++ b/mod/locs.php @@ -24,7 +24,7 @@ function locs_post(&$a) { intval(HUBLOC_FLAGS_PRIMARY), 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_id), dbesc($channel['channel_hash']) @@ -36,12 +36,14 @@ function locs_post(&$a) { if($_REQUEST['drop']) { $hubloc_id = intval($_REQUEST['drop']); + 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", intval($hubloc_id), dbesc(z_root()), dbesc($channel['channel_hash']) ); + if(! $r) { notice( t('Location not found.') . EOL); return; @@ -50,7 +52,7 @@ function locs_post(&$a) { notice( t('Primary location cannot be removed.') . EOL); 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_id), dbesc($channel['channel_hash']) |