diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-02-23 15:05:05 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-02-23 15:05:05 +0100 |
commit | 43f4daade3e7c4366898f1bf9959be31e46ccfb6 (patch) | |
tree | 39145d8ba4933bbae3ef83c9ca9ee942f8db140c /lib | |
parent | 780cc50f5f1acd9963edc0ccff1ebee9f612827a (diff) | |
download | webadmin-43f4daade3e7c4366898f1bf9959be31e46ccfb6.tar.gz |
Fixed methods' argument description
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kolab_client_task.php | 2 | ||||
-rw-r--r-- | lib/kolab_utils.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/kolab_client_task.php b/lib/kolab_client_task.php index 6a6fac1..c2d479b 100644 --- a/lib/kolab_client_task.php +++ b/lib/kolab_client_task.php @@ -407,7 +407,7 @@ class kolab_client_task * * @param string $name Parameter name * @param string $type Parameter type (GET|POST|NULL) - * @param bool $allow_html Enable to strip invalid/unsecure content + * @param bool $allow_html Disables stripping of insecure content (HTML tags) * * @see kolab_utils::get_input * @return mixed Input value. diff --git a/lib/kolab_utils.php b/lib/kolab_utils.php index 390b9eb..2694f71 100644 --- a/lib/kolab_utils.php +++ b/lib/kolab_utils.php @@ -55,7 +55,7 @@ class kolab_utils * * @param string $name Parameter name * @param int $type Parameter type - * @param bool $allow_html Enable to strip invalid/unsecure content + * @param bool $allow_html Disables stripping of insecure content (HTML tags) * * @return mixed Input value */ @@ -78,7 +78,7 @@ class kolab_utils * Input parsing. * * @param mixed $value Input value - * @param bool $allow_html Enable to strip invalid/unsecure content + * @param bool $allow_html Disables stripping of insecure content (HTML tags) * * @return mixed Input value */ |