aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-02-01 15:41:01 -0800
committerfriendica <info@friendica.com>2015-02-01 15:41:01 -0800
commite58bef049d7736d448f7bb5688affe491b9e24b1 (patch)
treed59afeaae694d802648a0468a1ae6f288c8f38c5
parent9bef0d5e141b813485b2179a0efe815c65f9a474 (diff)
downloadvolse-hubzilla-e58bef049d7736d448f7bb5688affe491b9e24b1.tar.gz
volse-hubzilla-e58bef049d7736d448f7bb5688affe491b9e24b1.tar.bz2
volse-hubzilla-e58bef049d7736d448f7bb5688affe491b9e24b1.zip
admin/dbsync not reporting failed updates
-rw-r--r--install/update.php2
-rw-r--r--mod/admin.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/install/update.php b/install/update.php
index 4cd1ced5d..c6e4535e1 100644
--- a/install/update.php
+++ b/install/update.php
@@ -1556,4 +1556,4 @@ function update_r1135() {
if($r)
return UPDATE_SUCCESS;
return UPDATE_FAILED;
-} \ No newline at end of file
+}
diff --git a/mod/admin.php b/mod/admin.php
index ec922cc72..e1808fd55 100644
--- a/mod/admin.php
+++ b/mod/admin.php
@@ -562,7 +562,7 @@ function admin_page_dbsync(&$a) {
if(count($r)) {
foreach($r as $rr) {
$upd = intval(substr($rr['k'],8));
- if($upd < 1139 || $rr['v'] === 'success')
+ if($rr['v'] === 'success')
continue;
$failed[] = $upd;
}