Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Merge branch 'MDL-61482-34' of git://github.com/zig-moodle/moodle int…
- Loading branch information
Showing
with
3 additions
and
6 deletions.
-
+3
−6
mod/assign/gradingtable.php
|
@@ -1122,11 +1122,10 @@ public function col_allowsubmissionsfromdate(stdClass $row) { |
|
|
|
|
|
if ($row->allowsubmissionsfromdate) { |
|
|
$userdate = userdate($row->allowsubmissionsfromdate); |
|
|
$o = $this->output->container($userdate, 'allowsubmissionsfromdate'); |
|
|
$o = ($this->is_downloading()) ? $userdate : $this->output->container($userdate, 'allowsubmissionsfromdate'); |
|
|
} |
|
|
|
|
|
return $o; |
|
|
|
|
|
} |
|
|
|
|
|
/** |
|
@@ -1140,11 +1139,10 @@ public function col_duedate(stdClass $row) { |
|
|
|
|
|
if ($row->duedate) { |
|
|
$userdate = userdate($row->duedate); |
|
|
$o = $this->output->container($userdate, 'duedate'); |
|
|
$o = ($this->is_downloading()) ? $userdate : $this->output->container($userdate, 'duedate'); |
|
|
} |
|
|
|
|
|
return $o; |
|
|
|
|
|
} |
|
|
|
|
|
/** |
|
@@ -1158,11 +1156,10 @@ public function col_cutoffdate(stdClass $row) { |
|
|
|
|
|
if ($row->cutoffdate) { |
|
|
$userdate = userdate($row->cutoffdate); |
|
|
$o = $this->output->container($userdate, 'cutoffdate'); |
|
|
$o = ($this->is_downloading()) ? $userdate : $this->output->container($userdate, 'cutoffdate'); |
|
|
} |
|
|
|
|
|
return $o; |
|
|
|
|
|
} |
|
|
|
|
|
/** |
|
|