reversed args in update_modtime, incorrect ud_guid and ud_hash

This commit is contained in:
friendica
2014-02-10 20:38:26 -08:00
parent 74fb7d158b
commit 59094cda51
4 changed files with 5 additions and 5 deletions

View File

@@ -221,8 +221,8 @@ function syncdirs($uid) {
}
}
$ud_hash = random_string();
update_modtime($ud_hash,$hash,$p[0]['channel_address'] . '@' . get_app()->get_hostname(),1);
$ud_hash = random_string() . '@' . get_app()->get_hostname();
update_modtime($hash,$ud_hash,$p[0]['channel_address'] . '@' . get_app()->get_hostname(),1);
}