mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-09 13:06:14 +00:00
add formatComment()
used to group comments entered for receiption of document
This commit is contained in:
parent
a5688a7c3b
commit
00b4817bc7
|
@ -586,4 +586,16 @@ function addDirSep($str) { /* {{{ */
|
||||||
else
|
else
|
||||||
return trim($str);
|
return trim($str);
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Formats comments for aknowledge of reception.
|
||||||
|
*
|
||||||
|
* Only use in documentListRow()
|
||||||
|
*/
|
||||||
|
function formatComment($an) { /* {{{ */
|
||||||
|
$t = array();
|
||||||
|
foreach($an as $a)
|
||||||
|
$t[] = $a['n']." × ".$a['c'];
|
||||||
|
return $t;
|
||||||
|
} /* }}} */
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user