Rename DBA::esc_array to DBA::escapeArray
authorHypolite Petovan <mrpetovan@gmail.com>
Sat, 21 Jul 2018 12:48:29 +0000 (08:48 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 23 Jul 2018 15:04:15 +0000 (11:04 -0400)
- Rename internal method DBA::esc_array_callback to
DBA::escapeArrayCallback

mod/dfrn_request.php
src/Database/DBA.php

index a7fbc27..5c7e2ad 100644 (file)
@@ -129,7 +129,7 @@ function dfrn_request_post(App $a)
                                        $photo = $parms["photo"];
 
                                        // Escape the entire array
-                                       DBA::esc_array($parms);
+                                       DBA::escapeArray($parms);
 
                                        // Create a contact record on our site for the other person
                                        $r = q("INSERT INTO `contact` ( `uid`, `created`,`url`, `nurl`, `addr`, `name`, `nick`, `photo`, `site-pubkey`,
@@ -371,7 +371,7 @@ function dfrn_request_post(App $a)
                                $parms['issued-id'] = $issued_id;
                                $photo = $parms["photo"];
 
-                               DBA::esc_array($parms);
+                               DBA::escapeArray($parms);
                                $r = q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `name`, `nick`, `issued-id`, `photo`, `site-pubkey`,
                                        `request`, `confirm`, `notify`, `poll`, `poco`, `network`, `blocked`, `pending` )
                                        VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d )",
index ecba9f2..8e5a621 100644 (file)
@@ -1604,7 +1604,7 @@ class DBA
         * @param boolean $add_quotation add quotation marks for string values
         * @return void
         */
-       private static function esc_array_callback(&$value, $key, $add_quotation)
+       private static function escapeArrayCallback(&$value, $key, $add_quotation)
        {
                if (!$add_quotation) {
                        if (is_bool($value)) {
@@ -1631,8 +1631,8 @@ class DBA
         * @param boolean $add_quotation add quotation marks for string values
         * @return void
         */
-       public static function esc_array(&$arr, $add_quotation = false)
+       public static function escapeArray(&$arr, $add_quotation = false)
        {
-               array_walk($arr, 'self::esc_array_callback', $add_quotation);
+               array_walk($arr, 'self::escapeArrayCallback', $add_quotation);
        }
 }