Commit b75cf36607ec8b6a34b0980055be911d2b74508c
1 parent
c5f7a13b
fixed incorrect documentID reference
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2362 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc
| ... | ... | @@ -272,7 +272,7 @@ function renderNonEditableDocumentRouting($oDocument) { |
| 272 | 272 | $sToRender .= "\t\t<tr><td><table border=\"0\"><tr>\n"; |
| 273 | 273 | $sToRender .= "\t\t<td><b>You currently have an active role<br> in the collaboration process</b></td>\n"; |
| 274 | 274 | $sToRender .= "\t\t<td align=\"center\"><a href=" . $_SERVER['PHP_SELF'] . "?fDocumentID=" . $oDocument->getID() . "&fCollaborationStepComplete=1><img src=\"$default->graphicsUrl/widgets/approve.gif\" border=\"0\"/></a></td>\n"; |
| 275 | - $sToRender .= "\t\t<td align=\"center\"><a href=\"$default->rootUrl/control.php?action=collaborationStepReject&fDocumentID=$iDocumentID\"><img src=\"$default->graphicsUrl/widgets/reject.gif\" border=\"0\"/></a></td>\n"; | |
| 275 | + $sToRender .= "\t\t<td align=\"center\"><a href=\"$default->rootUrl/control.php?action=collaborationStepReject&fDocumentID=" . $oDocument->getID() . "\"><img src=\"$default->graphicsUrl/widgets/reject.gif\" border=\"0\"/></a></td>\n"; | |
| 276 | 276 | $sToRender .= "\t\t</tr></table></td></tr>\n"; |
| 277 | 277 | } |
| 278 | 278 | ... | ... |