diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-03 15:48:01 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-03 15:48:01 -0700 |
commit | e1af81ea55bbec1ce9c03f824386ec062ae37581 (patch) | |
tree | 2243a3dbd5caced70960d069724a9eeeea480737 /install/update.php | |
parent | 90d48d60d8fb038d225ec7afa3c3651ff205d58e (diff) | |
download | volse-hubzilla-e1af81ea55bbec1ce9c03f824386ec062ae37581.tar.gz volse-hubzilla-e1af81ea55bbec1ce9c03f824386ec062ae37581.tar.bz2 volse-hubzilla-e1af81ea55bbec1ce9c03f824386ec062ae37581.zip |
in this case no results is not an error
Diffstat (limited to 'install/update.php')
-rw-r--r-- | install/update.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/install/update.php b/install/update.php index 16db09328..82792a82d 100644 --- a/install/update.php +++ b/install/update.php @@ -1750,8 +1750,7 @@ function update_r1151() { } } - if ($r3) - return UPDATE_SUCCESS; - return UPDATE_FAILED; + + return UPDATE_SUCCESS; } |