Skip to content

Commit

Permalink
Improve PHPDoc for print_tag_input()
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Nov 22, 2019
1 parent 14f9ef3 commit 7d08e5e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion core/print_api.php
Expand Up @@ -364,8 +364,13 @@ function print_tag_attach_form( $p_bug_id, $p_string = '' ) {

/**
* Print the separator comment, input box, and existing tag dropdown menu.
* @param integer $p_bug_id A bug identifier.
*
* @param integer $p_bug_id A bug identifier. If not specified or 0, the
* dropdown list will include all available tags;
* otherwise tags attached to the given bug will
* be excluded.
* @param string $p_string Default contents of the input box.
*
* @return void
*/
function print_tag_input( $p_bug_id = 0, $p_string = '' ) {
Expand Down

0 comments on commit 7d08e5e

Please sign in to comment.