2 messages in com.mysql.lists.eventum-develRe: small tweak so that 'Creation Dat...| From | Sent On | Attachments |
|---|---|---|
| Greg Rundlett | 20 Dec 2006 07:57 | |
| Greg Rundlett | 20 Dec 2006 13:23 |
| Subject: | Re: small tweak so that 'Creation Date' is available to be shown in list.php![]() |
|---|---|
| From: | Greg Rundlett (greg...@oasis-open.org) |
| Date: | 12/20/2006 01:23:50 PM |
| List: | com.mysql.lists.eventum-devel |
I should add that these diffs are against v. 1.7.1
I just browsed the source and there are similar diffs in the repo (e.g. http://svn.mysql.com/fisheye/browse/eventum-gpl/eventum/include/class.display_column.php?r1=2093&r2=2058&u=3&ignore=&k=)
Greg Rundlett wrote:
Index: include/class.display_column.php =================================================================== --- include/class.display_column.php (revision 3818) +++ include/class.display_column.php (revision 3819) @@ -175,6 +175,10 @@ "iss_id" => array( "title" => "Issue ID" ), + /* GSR added issue creation to listing output */ + "iss_created_date" => array( + "title" => "Created" + ), "usr_full_name" => array( "title" => "Reporter" ), @@ -314,4 +318,4 @@ if (APP_BENCHMARK) { $GLOBALS['bench']->setMarker('Included Display_Column Class'); } -?> +?> \ No newline at end of file Index: templates/en/list.tpl.html =================================================================== --- templates/en/list.tpl.html (revision 3818) +++ templates/en/list.tpl.html (revision 3819) @@ -261,6 +261,8 @@ {$list[i].customer_title|escape:"html"} {elseif $field_name == 'sta_rank'} {$list[i].sta_title|escape:"html"} + {elseif $field_name == 'iss_created_date'} + {$list[i].iss_created_date|escape:"html"} {elseif $field_name == 'iss_dev_time'} {$list[i].iss_dev_time|escape:"html"} {elseif $field_name == 'sta_change_date'}
-- Gregory S. Rundlett Manager, Technology Services Organization for the Advancement of Structured Information Standards (OASIS) http://www.oasis-open.org +1 (978) 667-5115 x 205
OASIS Symposium: "eBusiness and Open Standards: Understanding the Facts, Fiction, and Future" 15-18 April 2007 San Diego, CA USA http://www.oasis-open.org/events/symposium/




