[Fusionforge-commits] r11714 - in branches/Branch_5_1/src: common/include www/my
Alain Peyrat
aljeux at libremir.placard.fr.eu.org
Tue Dec 7 20:29:49 CET 2010
Author: aljeux
Date: 2010-12-07 20:29:49 +0100 (Tue, 07 Dec 2010)
New Revision: 11714
Modified:
branches/Branch_5_1/src/common/include/Group.class.php
branches/Branch_5_1/src/www/my/dashboard.php
Log:
No & when not needed.
Modified: branches/Branch_5_1/src/common/include/Group.class.php
===================================================================
--- branches/Branch_5_1/src/common/include/Group.class.php 2010-12-07 19:29:39 UTC (rev 11713)
+++ branches/Branch_5_1/src/common/include/Group.class.php 2010-12-07 19:29:49 UTC (rev 11714)
@@ -2176,7 +2176,7 @@
*
* @return array of User objects for this group.
*/
- function &getMembers() {
+ function getMembers() {
return $this->getUsers (true) ;
}
Modified: branches/Branch_5_1/src/www/my/dashboard.php
===================================================================
--- branches/Branch_5_1/src/www/my/dashboard.php 2010-12-07 19:29:39 UTC (rev 11713)
+++ branches/Branch_5_1/src/www/my/dashboard.php 2010-12-07 19:29:49 UTC (rev 11714)
@@ -144,7 +144,7 @@
$taskid = $taskinfo['project_task_id'];
$projectid = $taskinfo['group_project_id'];
$groupid = $taskinfo['group_id'];
- $g =& group_get_object($groupid);
+ $g = group_get_object($groupid);
$pg = new ProjectGroup($g, $projectid);
echo $pg->getName().'<br/>';
$summary = util_unconvert_htmlspecialchars($taskinfo['summary']);
More information about the Fusionforge-commits
mailing list