From aeaf4bf5f8b38f734585aea3659e9fbe3cf2de0b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?L=C3=A9o?= <zongap@users.noreply.github.com>
Date: Tue, 4 Mar 2014 02:29:18 +0100
Subject: [PATCH] Update index.php from Project folder

A trailing "quote" sign was causing a problem with the link generation of href in the recap table on dashboard.
---
 htdocs/projet/index.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/htdocs/projet/index.php b/htdocs/projet/index.php
index 6b1c0e7be9b..81c3b0b8fe8 100644
--- a/htdocs/projet/index.php
+++ b/htdocs/projet/index.php
@@ -184,7 +184,7 @@ if ( $resql )
 
 		print "<tr ".$bc[$var].">";
 		print '<td>'.$username.'</td>';
-		print '<td><a href="'.DOL_URL_ROOT.'/projet/fiche.php?id="'.$obj->projectid.'">'.$obj->title.'</a></td>';
+		print '<td><a href="'.DOL_URL_ROOT.'/projet/fiche.php?id='.$obj->projectid.'">'.$obj->title.'</a></td>';
 		print '<td><a href="'.DOL_URL_ROOT.'/projet/tasks/task.php?id='.$obj->taskid.'&withproject=1">'.$obj->label.'</a></td>';
 		print '<td>'.dol_print_date($db->jdate($obj->dateo)).'</td>';
 		print '<td>'.dol_print_date($db->jdate($obj->datee)).'</td>';
-- 
GitLab