function _xrds_strip_namespace
2 calls to _xrds_strip_namespace()
- _xrds_element_end in drupal-6.x/
modules/ openid/ xrds.inc - _xrds_element_start in drupal-6.x/
modules/ openid/ xrds.inc - Parser callback functions
Archivo
- drupal-6.x/
modules/ openid/ xrds.inc, line 73
Código
function _xrds_strip_namespace($name) {
// Strip namespacing.
$pos = strrpos($name, ':');
if ($pos !== FALSE) {
$name = substr($name, $pos + 1, strlen($name));
}
return $name;
}