diff options
author | redmatrix <git@macgirvin.com> | 2016-06-01 22:05:17 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-06-01 22:05:17 -0700 |
commit | 05d9e1bee565ac0448c779a00d8d637341390cf7 (patch) | |
tree | 300056076ab649b73852501c30e1000822144a48 /install | |
parent | a9d7acda279ebb7f2b3cd61a91a5e1d8b590dcf2 (diff) | |
download | volse-hubzilla-05d9e1bee565ac0448c779a00d8d637341390cf7.tar.gz volse-hubzilla-05d9e1bee565ac0448c779a00d8d637341390cf7.tar.bz2 volse-hubzilla-05d9e1bee565ac0448c779a00d8d637341390cf7.zip |
check all return values
Diffstat (limited to 'install')
-rw-r--r-- | install/update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/update.php b/install/update.php index 3e18c9840..908f60498 100644 --- a/install/update.php +++ b/install/update.php @@ -2249,7 +2249,7 @@ function update_r1175() { } - if($r1) + if($r1 && $r2 && $r3 && $r4) return UPDATE_SUCCESS; return UPDATE_FAILED; |