Code comment

This commit is contained in:
Laurent Destailleur 2018-05-25 12:48:33 +02:00
parent 9d407cdc03
commit bcbe28d802

View File

@ -1578,11 +1578,11 @@ abstract class CommonObject
/** /**
* Return list of id of contacts of project * Return list of id of contacts of object
* *
* @param string $source Source of contact: external (llx_socpeople) or internal (llx_user) or thirdparty (llx_societe) * @param string $source Source of contact: external (llx_socpeople) or internal (llx_user) or thirdparty (llx_societe)
* @return array Array of id of contacts (if source=external or internal) * @return array Array of id of contacts (if source=external or internal)
* Array of id of third parties with at least one contact on project (if source=thirdparty) * Array of id of third parties with at least one contact on object (if source=thirdparty)
*/ */
function getListContactId($source='external') function getListContactId($source='external')
{ {
@ -3659,7 +3659,7 @@ abstract class CommonObject
if (empty($reshook)) if (empty($reshook))
{ {
print "<thead>\n"; print "<thead>\n";
print '<tr class="liste_titre nodrag nodrop">'; print '<tr class="liste_titre nodrag nodrop">';
if (! empty($conf->global->MAIN_VIEW_LINE_NUMBER)) print '<td class="linecolnum" align="center" width="5">&nbsp;</td>'; if (! empty($conf->global->MAIN_VIEW_LINE_NUMBER)) print '<td class="linecolnum" align="center" width="5">&nbsp;</td>';
@ -3742,7 +3742,7 @@ abstract class CommonObject
$var = true; $var = true;
$i = 0; $i = 0;
print "<tbody>\n"; print "<tbody>\n";
foreach ($this->lines as $line) foreach ($this->lines as $line)
{ {
@ -3771,7 +3771,7 @@ abstract class CommonObject
$i++; $i++;
} }
print "</tbody>\n"; print "</tbody>\n";
} }
/** /**