Page MenuHomePhorge

No OneTemporary

diff --git a/src/applications/phid/handle/view/render.php b/src/applications/phid/handle/view/render.php
index 6e19412c6a..21a9e23c0f 100644
--- a/src/applications/phid/handle/view/render.php
+++ b/src/applications/phid/handle/view/render.php
@@ -1,35 +1,35 @@
<?php
/**
- * Implodes a list of handles, rendering their links
+ * Implodes a list of handles, rendering their links.
*
* @group handle
* @return PhutilSafeHTML
*/
function implode_handle_links($glue, array $handles) {
$items = array();
foreach ($handles as $handle) {
$items[] = $handle->renderLink();
}
return phutil_implode_html($glue, $items);
}
/**
- * Like @{function:implode_handle_links}Implodes selected handles from a pool of
- * handles. Useful if you load handles for various phids, but only render a few
- * of them at a time
+ * Like @{function:implode_handle_links}. Implodes selected handles from a pool
+ * of handles. Useful if you load handles for various phids, but only render
+ * a few of them at a time.
*
* @group handle
* @return PhutilSafeHTML
*/
function implode_selected_handle_links($glue, array $handles, array $phids) {
$items = array();
foreach ($phids as $phid) {
$items[] = $handles[$phid]->renderLink();
}
return phutil_implode_html($glue, $items);
}

File Metadata

Mime Type
text/x-diff
Expires
Sun, Jan 19, 17:31 (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1126986
Default Alt Text
(1 KB)

Event Timeline