aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-09-21 20:05:54 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-09-21 20:05:54 -0700
commit9baaa6fa563525aac5e97822ec669a29310ff08b (patch)
tree99ea8d3d37db0859fc69d8b91f5d23d9e78fc5fc /mod
parentd2565d0f61c139df6536ec9d90c10d7af29ef9e5 (diff)
downloadvolse-hubzilla-9baaa6fa563525aac5e97822ec669a29310ff08b.tar.gz
volse-hubzilla-9baaa6fa563525aac5e97822ec669a29310ff08b.tar.bz2
volse-hubzilla-9baaa6fa563525aac5e97822ec669a29310ff08b.zip
issue #51
Diffstat (limited to 'mod')
-rw-r--r--mod/locs.php15
1 files changed, 11 insertions, 4 deletions
diff --git a/mod/locs.php b/mod/locs.php
index 3f8bd9029..3c6a5da67 100644
--- a/mod/locs.php
+++ b/mod/locs.php
@@ -50,8 +50,17 @@ function locs_post(&$a) {
return;
}
if(intval($r[0]['hubloc_primary'])) {
- notice( t('Primary location cannot be removed.') . EOL);
- return;
+ $x = q("select hubloc_id from hubloc where hubloc_primary = 1 and hubloc_hash = '%s'",
+ dbesc($channel['channel_hash'])
+ );
+ if(! $x) {
+ notice( t('Location lookup failed.'));
+ return;
+ }
+ if(count($x) == 1) {
+ notice( t('Please select another location to become primary before removing the primary location.') . EOL);
+ return;
+ }
}
$r = q("update hubloc set hubloc_deleted = 1 where hubloc_id = %d and hubloc_hash = '%s'",
@@ -91,8 +100,6 @@ function locs_content(&$a) {
$r[$x]['deleted'] = (intval($r[$x]['hubloc_deleted']) ? true : false);
}
-
-
$o = replace_macros(get_markup_template('locmanage.tpl'), array(
'$header' => t('Manage Channel Locations'),
'$loc' => t('Location (address)'),