more work on file sync to clones, 60-70% test coverage, mostly working but many changes made during testing which themselves have not yet been tested

This commit is contained in:
redmatrix
2016-04-06 19:56:38 -07:00
parent 9831ad515d
commit 861f5232d3
4 changed files with 63 additions and 13 deletions

View File

@@ -46,7 +46,7 @@ function getfile_post(&$a) {
$d1 = datetime_convert('UTC','UTC',"now + $slop minutes");
$d2 = datetime_convert('UTC','UTC',"now - $slop minutes");
if(($time > d1) || ($time < d2)) {
if(($time > $d1) || ($time < $d2)) {
logger('time outside allowable range');
killme();
}