diff options
author | friendica <info@friendica.com> | 2015-02-01 15:41:01 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-01 15:41:01 -0800 |
commit | e58bef049d7736d448f7bb5688affe491b9e24b1 (patch) | |
tree | d59afeaae694d802648a0468a1ae6f288c8f38c5 /mod | |
parent | 9bef0d5e141b813485b2179a0efe815c65f9a474 (diff) | |
download | volse-hubzilla-e58bef049d7736d448f7bb5688affe491b9e24b1.tar.gz volse-hubzilla-e58bef049d7736d448f7bb5688affe491b9e24b1.tar.bz2 volse-hubzilla-e58bef049d7736d448f7bb5688affe491b9e24b1.zip |
admin/dbsync not reporting failed updates
Diffstat (limited to 'mod')
-rw-r--r-- | mod/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |