aboutsummaryrefslogtreecommitdiffstats
path: root/mod/import.php
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-08-26 13:50:51 -0700
committerredmatrix <redmatrix@redmatrix.me>2015-08-26 13:50:51 -0700
commit71308fe8c157471ec43ac6af190114ef03cc78c9 (patch)
tree5a5e09e749bda250f1bede19bebea0dcf45c725a /mod/import.php
parentda649e397e63e71d8111f4b6be1d569f5ad2d319 (diff)
downloadvolse-hubzilla-71308fe8c157471ec43ac6af190114ef03cc78c9.tar.gz
volse-hubzilla-71308fe8c157471ec43ac6af190114ef03cc78c9.tar.bz2
volse-hubzilla-71308fe8c157471ec43ac6af190114ef03cc78c9.zip
syntax error in last checkin
Diffstat (limited to 'mod/import.php')
-rw-r--r--mod/import.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/import.php b/mod/import.php
index b3d0859e4..24780b6c4 100644
--- a/mod/import.php
+++ b/mod/import.php
@@ -237,19 +237,19 @@ function import_post(&$a) {
}
if(array_key_exists('hubloc_primary',$hubloc)) {
- if(intval($hubloc['hubloc_primary']) {
+ if(intval($hubloc['hubloc_primary'])) {
$hubloc['hubloc_flags'] |= HUBLOC_FLAGS_PRIMARY;
unset($hubloc['hubloc_primary']);
}
- if(intval($hubloc['hubloc_orphancheck']) {
+ if(intval($hubloc['hubloc_orphancheck'])) {
$hubloc['hubloc_flags'] |= HUBLOC_FLAGS_ORPHANCHECK;
unset($hubloc['hubloc_orphancheck']);
}
- if(intval($hubloc['hubloc_deleted']) {
+ if(intval($hubloc['hubloc_deleted'])) {
$hubloc['hubloc_flags'] |= HUBLOC_FLAGS_DELETED;
unset($hubloc['hubloc_deleted']);
}
- if(intval($hubloc['hubloc_error']) {
+ if(intval($hubloc['hubloc_error'])) {
$hubloc['hubloc_status'] |= HUBLOC_ERROR;
unset($hubloc['hubloc_error']);
}