You are here

function kaltura_alternate_xml_verification in Kaltura 6.2

Used when SimpleXML is not available; just assume everything looks OK and hope for the best.

1 call to kaltura_alternate_xml_verification()
kaltura_parse_crossdomain in includes/kaltura.admin.inc
helper function that checks if crossdomain.xml says the right things

File

includes/kaltura.admin.inc, line 793

Code

function kaltura_alternate_xml_verification($filename) {
  return array(
    TRUE,
    t('crossdomain.xml is in place and seems to be OK'),
  );
}