Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2892897
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
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
Details
Attached
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)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment