diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-02-19 20:23:13 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-02-19 20:23:13 +0100 |
commit | 2047801b858d56ba72da0a430903890bea0130cd (patch) | |
tree | f399a183ad43bb8a5063de3b41dca9bcfb4911d4 /Zotlabs/Update/_1201.php | |
parent | 43992dc463575655a5767fcb1a8dcb18a1d4ffdf (diff) | |
download | volse-hubzilla-2047801b858d56ba72da0a430903890bea0130cd.tar.gz volse-hubzilla-2047801b858d56ba72da0a430903890bea0130cd.tar.bz2 volse-hubzilla-2047801b858d56ba72da0a430903890bea0130cd.zip |
updates 1201 and 1200 should return success for postgres. notifications: remove class show and session storage entry when we mark all notifications seen
Diffstat (limited to 'Zotlabs/Update/_1201.php')
-rw-r--r-- | Zotlabs/Update/_1201.php | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Zotlabs/Update/_1201.php b/Zotlabs/Update/_1201.php index 416d35ad6..920a7401e 100644 --- a/Zotlabs/Update/_1201.php +++ b/Zotlabs/Update/_1201.php @@ -13,11 +13,15 @@ class _1201 { ADD INDEX uid_item_blocked (uid, item_blocked), ADD INDEX item_deleted_pending_remove_changed (item_deleted, item_pending_remove, changed) "); - } - if($r) + if($r) + return UPDATE_SUCCESS; + return UPDATE_FAILED; + } + else { return UPDATE_SUCCESS; - return UPDATE_FAILED; + } + } } |