synergy/server/model/TestAssignment.php [147:154]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public function setStarted($startedDateTime) {
        $this->started = "";
        if (isset($startedDateTime) && !is_null($startedDateTime)) {
            date_default_timezone_set('UTC');
            $str = strtotime($startedDateTime);
            $this->started = gmdate("d M Y H:i:s", $str) . " UTC";
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



synergy/server/model/review/ReviewAssignment.php [120:127]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public function setStarted($startedDateTime) {
        $this->started = "";
        if (isset($startedDateTime) && !is_null($startedDateTime)) {
            date_default_timezone_set('UTC');
            $str = strtotime($startedDateTime);
            $this->started = gmdate("d M Y H:i:s", $str) . " UTC";
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



