mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:02:54 +00:00
Rename DBA::esc_array to DBA::escapeArray
- Rename internal method DBA::esc_array_callback to DBA::escapeArrayCallback
This commit is contained in:
parent
ecea7425f8
commit
aa26943f92
2 changed files with 5 additions and 5 deletions
|
@ -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 )",
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue