diff options
author | Sashi20 | 2020-08-19 18:09:40 +0530 |
---|---|---|
committer | Sashi20 | 2020-08-19 18:09:40 +0530 |
commit | 925ba64e973fd66e45efa5f84ed17a024f05febd (patch) | |
tree | 0d9537a8794c2e1089c5dca182809fbdcb6d3c59 /custom_model_details.inc | |
parent | 1f48528c36126c447d6a5cb211938b3736cc1a69 (diff) | |
download | dwsim_custom_model-925ba64e973fd66e45efa5f84ed17a024f05febd.tar.gz dwsim_custom_model-925ba64e973fd66e45efa5f84ed17a024f05febd.tar.bz2 dwsim_custom_model-925ba64e973fd66e45efa5f84ed17a024f05febd.zip |
Modify project title column in completed projects page
Diffstat (limited to 'custom_model_details.inc')
-rwxr-xr-x | custom_model_details.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom_model_details.inc b/custom_model_details.inc index 893e0d7..2860d2a 100755 --- a/custom_model_details.inc +++ b/custom_model_details.inc @@ -26,7 +26,7 @@ function custom_model_completed_proposals_all() $completion_date = date("Y", $row->actual_completion_date); $preference_rows[] = array( $i, - l($row->project_title, "custom-model/custom-model-run/" . $row->id), + l($row->project_title, "custom-model/custom-model-run/" . $row->id) . t("<br><strong>(Script used: ") . $row->script_used . t(")</strong>"), $row->contributor_name, $row->university, $completion_date |