1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-07 23:27:17 +02:00

Unindent doc-comments

This commit is contained in:
Jakub Vrana
2018-01-11 15:14:05 +01:00
parent ecf34769ad
commit 329fa55af5
2 changed files with 22 additions and 22 deletions

View File

@@ -172,12 +172,12 @@ function html_select($name, $options, $value = "", $onchange = true, $labelled_b
}
/** Generate HTML <select> or <input> if $options are empty
* @param string
* @param array
* @param string
* @param string
* @return string
*/
* @param string
* @param array
* @param string
* @param string
* @return string
*/
function select_input($attrs, $options, $value = "", $placeholder = "") {
return ($options
? "<select$attrs><option value=''>$placeholder" . optionlist($options, $value, true) . "</select>"