summaryrefslogtreecommitdiff
path: root/inc/form.php
diff options
context:
space:
mode:
authorGerrit Uitslag <klapinklapin@gmail.com>2014-03-04 21:39:53 +0100
committerGerrit Uitslag <klapinklapin@gmail.com>2014-03-04 21:39:53 +0100
commit603c1a1e6dfa9f1bc6759843283a8a7995c613f8 (patch)
tree61349b0905bf69e2370f150d6e32901bad1aa25f /inc/form.php
parentb35d34217e073f330111fea5812fa4d88680a4ef (diff)
parent4b142187c1238555a14d79ff6e054a678ce828f3 (diff)
downloadrpg-603c1a1e6dfa9f1bc6759843283a8a7995c613f8.tar.gz
rpg-603c1a1e6dfa9f1bc6759843283a8a7995c613f8.tar.bz2
Merge remote-tracking branch 'origin/master' into FS#2124deniedtext
Conflicts: inc/lang/bn/lang.php inc/lang/fr/denied.txt
Diffstat (limited to 'inc/form.php')
-rw-r--r--inc/form.php16
1 files changed, 6 insertions, 10 deletions
diff --git a/inc/form.php b/inc/form.php
index 312c42b60..610f50200 100644
--- a/inc/form.php
+++ b/inc/form.php
@@ -47,15 +47,11 @@ class Doku_Form {
* with up to four parameters is deprecated, instead the first parameter
* should be an array with parameters.
*
- * @param mixed $params Parameters for the HTML form element; Using the
- * deprecated calling convention this is the ID
- * attribute of the form
- * @param string $action (optional, deprecated) submit URL, defaults to
- * current page
- * @param string $method (optional, deprecated) 'POST' or 'GET', default
- * is POST
- * @param string $enctype (optional, deprecated) Encoding type of the
- * data
+ * @param mixed $params Parameters for the HTML form element; Using the deprecated
+ * calling convention this is the ID attribute of the form
+ * @param bool|string $action (optional, deprecated) submit URL, defaults to current page
+ * @param bool|string $method (optional, deprecated) 'POST' or 'GET', default is POST
+ * @param bool|string $enctype (optional, deprecated) Encoding type of the data
* @author Tom N Harris <tnharris@whoopdedo.org>
*/
function Doku_Form($params, $action=false, $method=false, $enctype=false) {
@@ -230,7 +226,7 @@ class Doku_Form {
* first (underflow) or last (overflow) element.
*
* @param int $pos 0-based index
- * @return arrayreference pseudo-element
+ * @return array reference pseudo-element
* @author Tom N Harris <tnharris@whoopdedo.org>
*/
function &getElementAt($pos) {