Rename DBA::esc_array to DBA::escapeArray

- Rename internal method DBA::esc_array_callback to
DBA::escapeArrayCallback
This commit is contained in:
Hypolite Petovan 2018-07-21 08:48:29 -04:00 committed by Hypolite Petovan
parent ecea7425f8
commit aa26943f92
2 changed files with 5 additions and 5 deletions

View 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 )",

View 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);
}
}