continue attempt to reduce duplicated updates of the same content.

This commit is contained in:
Mike Macgirvin 2024-04-30 19:26:22 +10:00
parent 40cb32565d
commit 9cd2de9a4f

View file

@ -514,6 +514,13 @@ class Display extends Controller
} }
} }
// When updating, set loadtime just prior to returning the
// update. This will prevent the current content from being sent again,
// unless there were additional updates.
if ($this->updating) {
$_SESSION['loadtime_display'] = Time::convert();
}
return $o; return $o;
} }
} }