mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 15:14:58 +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
|
||||
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