aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/input.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-12-16 12:35:20 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2009-12-16 12:35:20 +0000
commit6a58bd24f5e958bb5368eaac0e1131368a4ee5a2 (patch)
treec76e7e64a305e2a58e3852ed8d925fc5e50e1dda /engine/lib/input.php
parent7194d2ee7b40c46804210ecab075c44b700afa80 (diff)
downloadelgg-6a58bd24f5e958bb5368eaac0e1131368a4ee5a2.tar.gz
elgg-6a58bd24f5e958bb5368eaac0e1131368a4ee5a2.tar.bz2
added comments on get_input and set_input since they do not handle nested arrays
git-svn-id: http://code.elgg.org/elgg/trunk@3760 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/input.php')
-rw-r--r--engine/lib/input.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/engine/lib/input.php b/engine/lib/input.php
index a412f3644..abc2d6811 100644
--- a/engine/lib/input.php
+++ b/engine/lib/input.php
@@ -12,6 +12,9 @@
/**
* Get some input from variables passed on the GET or POST line.
*
+ * Note: this function does not handle nested arrays (ex: form input of param[m][n])
+ * because of the filtering done in htmlawed from the filter_tags call.
+ *
* @param $variable string The variable we want to return.
* @param $default mixed A default value for the variable if it is not found.
* @param $filter_result If true then the result is filtered for bad tags.
@@ -49,6 +52,8 @@ function get_input($variable, $default = "", $filter_result = true) {
/**
* Sets an input value that may later be retrieved by get_input
+ *
+ * Note: this function does not handle nested arrays (ex: form input of param[m][n])
*
* @param string $variable The name of the variable
* @param string $value The value of the variable