diff options
author | Sashi20 | 2019-04-04 11:52:26 +0530 |
---|---|---|
committer | Sashi20 | 2019-04-04 11:52:26 +0530 |
commit | 9f21cf74562ec66b0b5699014fc720ac518e34b6 (patch) | |
tree | e11844534e3a50afc8cd5357013c384df51be50d /lab_details.inc | |
parent | d0536f2f87005f0b2f646921541f32ec7fed1ebd (diff) | |
download | DWSIM_lab_migration-9f21cf74562ec66b0b5699014fc720ac518e34b6.tar.gz DWSIM_lab_migration-9f21cf74562ec66b0b5699014fc720ac518e34b6.tar.bz2 DWSIM_lab_migration-9f21cf74562ec66b0b5699014fc720ac518e34b6.zip |
Add help text for field in upload code form
Diffstat (limited to 'lab_details.inc')
-rwxr-xr-x | lab_details.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lab_details.inc b/lab_details.inc index e091852..b04986e 100755 --- a/lab_details.inc +++ b/lab_details.inc @@ -18,12 +18,12 @@ function lab_migration_completed_labs_all() $i = 1; while ($row = $result->fetchObject()) { - $approval_date = date("Y", $row->expected_completion_date); + $completion_date = date("Y", $row->expected_completion_date); $preference_rows[] = array( $i, $row->university, - l($row->lab_title, "lab-migration/lab-migration-run/" . $row->id), - $approval_date + $row->lab_title, + $completion_date ); $i++; } |