| |
spotlight |
Posted: Fri Nov 11, 2005 6:32 am Post subject: Project name in "Most Urgent Issues" |
|
|
|
Hello all,
Just wondering if anyone know's how to add the Project Name to the "Most Urgent Issues" table a the bottom of the Springboard.
Much thanks to anyone out there that can help me out.
--
Ruben |
|
| |
|
 |
loki-racer |
Posted: Thu Nov 17, 2005 6:14 pm Post subject: Try this... |
|
|
Joined: 03 Oct 2005 Posts: 7 Location: Leland, NC
|
Open
copper/system/modules/springboard/index.php
Search for
| Code: |
| $issue['txtTaskName'] = '<a href="index.php?module=springboard&action=view&projectid='.$issuesRS->Field('ProjectID').'&id='.$issuesRS->Field('TaskID').'#issue'.$issuesRS->Field('ID').'" title="'.$rollover.'" alt="'.$rollover.'">'.$issuesRS->Field('Name').'</a>'; |
replace with
| Code: |
| $issue['txtTaskName'] = $issuesRS->Field('ProjectName').' <a href="index.php?module=springboard&action=view&projectid='.$issuesRS->Field('ProjectID').'&id='.$issuesRS->Field('TaskID').'#issue'.$issuesRS->Field('ID').'" title="'.$rollover.'" alt="'.$rollover.'">'.$issuesRS->Field('Name').'</a>'; |
That should do. Remember to make a backup before trying it. |
|
| |
|
 |
spotlight |
Posted: Thu Nov 17, 2005 10:36 pm Post subject: Awesome... |
|
|
|
Thanks Chris for the code....works perfectly for our system.
--
Ruben |
|
| |
|
 |