commit: a7817026c2caa0dbf0f8961eb8f69f27a9c17f8e
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 30 15:43:47 2018 +0000
Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Tue Jan 30 15:43:47 2018 +0000
URL: https://gitweb.gentoo.org/proj/bouncer.git/commit/?id=a7817026
Update comment in forms lib
php/lib/forms.php | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/php/lib/forms.php b/php/lib/forms.php
index 0317949..e435181 100644
--- a/php/lib/forms.php
+++ b/php/lib/forms.php
@@ -641,8 +641,8 @@ function url_out($url)
}
/**
- * Take a db_get result and return an array of options.
- * @param array $data db_get result
+ * Take a DB::get result and return an array of options.
+ * @param array $data DB::get result
* @param string $val_col column containing the value for each option
* @param string $name_col column containing the text
* @return array $options array of options ($val=>$text)
@@ -656,4 +656,3 @@ function db_get_to_options($data,$val_col,$name_col)
}
return $options;
}
-?>