Skip to content

Commit

Permalink
Fix PHPDoc for print_link_button()
Browse files Browse the repository at this point in the history
Fix order of parameters

Fixes #22864
  • Loading branch information
cproensa authored and dregad committed May 13, 2017
1 parent 3b21c7c commit 0316eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/print_api.php
Expand Up @@ -1486,8 +1486,8 @@ function print_link( $p_link, $p_url_text, $p_new_window = false, $p_class = ''
* print a HTML link with a button look
* @param string $p_link The page URL.
* @param string $p_url_text The displayed text for the link.
* @param boolean $p_new_window Whether to open in a new window.
* @param string $p_class The CSS class of the link.
* @param boolean $p_new_window Whether to open in a new window.
* @return void
*/
function print_link_button( $p_link, $p_url_text, $p_class = '', $p_new_window = false ) {
Expand Down

0 comments on commit 0316eb9

Please sign in to comment.