aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-01-21 19:09:12 -0800
committerfriendica <info@friendica.com>2015-01-21 19:09:12 -0800
commitb946ac63a17ce95aa80d016ca4c2195ec8d7498a (patch)
treec4bb815bbc298c157b208a73c9cbdcf235d1815f /mod
parent0010eaa41158cd897188b441a71d7fa39c78de02 (diff)
downloadvolse-hubzilla-b946ac63a17ce95aa80d016ca4c2195ec8d7498a.tar.gz
volse-hubzilla-b946ac63a17ce95aa80d016ca4c2195ec8d7498a.tar.bz2
volse-hubzilla-b946ac63a17ce95aa80d016ca4c2195ec8d7498a.zip
couple of hubloc manager issues
Diffstat (limited to 'mod')
-rw-r--r--mod/locs.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/locs.php b/mod/locs.php
index 7ca813c34..bf2737718 100644
--- a/mod/locs.php
+++ b/mod/locs.php
@@ -11,15 +11,18 @@ function locs_post(&$a) {
if($_REQUEST['primary']) {
$hubloc_id = intval($_REQUEST['primary']);
if($hubloc_id) {
+
$r = q("select hubloc_id from hubloc where hubloc_id = %d and hubloc_hash = '%s' limit 1",
intval($hubloc_id),
dbesc($channel['channel_hash'])
);
+
if(! $r) {
notice( t('Location not found.') . EOL);
return;
}
- $r = q("update hubloc set hubloc_flags = (hubloc_flags & ~%d) where (hubloc_flags & %d)>0 and hubloc_hash = '%s' ",
+
+ $r = q("update hubloc set hubloc_flags = (hubloc_flags - %d) where (hubloc_flags & %d)>0 and hubloc_hash = '%s' ",
intval(HUBLOC_FLAGS_PRIMARY),
intval(HUBLOC_FLAGS_PRIMARY),
dbesc($channel['channel_hash'])
@@ -29,6 +32,7 @@ function locs_post(&$a) {
intval($hubloc_id),
dbesc($channel['channel_hash'])
);
+
proc_run('php','include/notifier.php','location',$channel['channel_id']);
return;
}