summaryrefslogtreecommitdiffstats
path: root/lib/util.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-06-22 08:17:35 +0200
committerBart Visscher <bartv@thisnet.nl>2012-06-22 17:21:56 +0200
commit432aa58bab91092f6a2bd2065b5fbbcfe3421523 (patch)
treef86c5641a6ea8953848fcc0606d1105040c8fbc0 /lib/util.php
parent036530b2fd0477f592d816acff5e689edf712ff4 (diff)
downloadnextcloud-server-432aa58bab91092f6a2bd2065b5fbbcfe3421523.tar.gz
nextcloud-server-432aa58bab91092f6a2bd2065b5fbbcfe3421523.zip
Spelling fixes
Diffstat (limited to 'lib/util.php')
-rwxr-xr-xlib/util.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/util.php b/lib/util.php
index 50955ebb87f..0d9f4129442 100755
--- a/lib/util.php
+++ b/lib/util.php
@@ -426,10 +426,11 @@ class OC_Util {
/**
* @brief Public function to sanitize HTML
*
- * This function is used to sanitize HTML and should be applied on any string or array of strings before displaying it on a web page.
+ * This function is used to sanitize HTML and should be applied on any
+ * string or array of strings before displaying it on a web page.
*
* @param string or array of strings
- * @return array with sanitized strings or a single sinitized string, depends on the input parameter.
+ * @return array with sanitized strings or a single sanitized string, depends on the input parameter.
*/
public static function sanitizeHTML( &$value ){
if (is_array($value) || is_object($value)) array_walk_recursive($value,'OC_Util::sanitizeHTML');
@@ -439,7 +440,7 @@ class OC_Util {
/**
- * Check if the htaccess file is working buy creating a test file in the data directory and trying to access via http
+ * Check if the htaccess file is working by creating a test file in the data directory and trying to access via http
*/
public static function ishtaccessworking() {