xml: rename convert_element_to_array to element_to_array
This commit is contained in:
parent
dbc39bea74
commit
9b3931e48a
|
@ -481,7 +481,7 @@ function lrdd($uri, $debug = false) {
|
||||||
if(! $h)
|
if(! $h)
|
||||||
return array();
|
return array();
|
||||||
|
|
||||||
$arr = xml::convert_element_to_array($h);
|
$arr = xml::element_to_array($h);
|
||||||
|
|
||||||
if(isset($arr['xrd']['property'])) {
|
if(isset($arr['xrd']['property'])) {
|
||||||
$property = $arr['crd']['property'];
|
$property = $arr['crd']['property'];
|
||||||
|
@ -659,7 +659,7 @@ function fetch_xrd_links($url) {
|
||||||
if(! $h)
|
if(! $h)
|
||||||
return array();
|
return array();
|
||||||
|
|
||||||
$arr = xml::convert_element_to_array($h);
|
$arr = xml::element_to_array($h);
|
||||||
|
|
||||||
$links = array();
|
$links = array();
|
||||||
|
|
||||||
|
|
|
@ -138,7 +138,7 @@ class xml {
|
||||||
*
|
*
|
||||||
* @return array | sring The array from the xml element or the string
|
* @return array | sring The array from the xml element or the string
|
||||||
*/
|
*/
|
||||||
public static function convert_element_to_array($xml_element, &$recursion_depth=0) {
|
public static function element_to_array($xml_element, &$recursion_depth=0) {
|
||||||
|
|
||||||
// If we're getting too deep, bail out
|
// If we're getting too deep, bail out
|
||||||
if ($recursion_depth > 512) {
|
if ($recursion_depth > 512) {
|
||||||
|
|
Loading…
Reference in a new issue