]> git.mxchange.org Git - friendica.git/blobdiff - include/dbm.php
Global is an integer, do not set it to an empty string
[friendica.git] / include / dbm.php
index 00cb153fb1ecf482892130e994091ef0057ca035..7d7045fed481a478db980dcee34187aa68b862d1 100644 (file)
@@ -55,7 +55,7 @@ class dbm {
         *
         * @param mixed $value Array value
         * @param string $key Array key
-        * @param boolean $add_quotation add quoatation marks for string values
+        * @param boolean $add_quotation add quotation marks for string values
         */
        private static function esc_array_callback(&$value, $key, $add_quotation) {
 
@@ -81,7 +81,7 @@ class dbm {
         * @brief Escapes a whole array
         *
         * @param mixed $arr Array with values to be escaped
-        * @param boolean $add_quotation add quoatation marks for string values
+        * @param boolean $add_quotation add quotation marks for string values
         */
        public static function esc_array(&$arr, $add_quotation = false) {
                array_walk($arr, 'self::esc_array_callback', $add_quotation);