Skip to content
Snippets Groups Projects
Commit 2844584f authored by Ben Coburn's avatar Ben Coburn
Browse files

optimize noNS

darcs-hash:20060705114601-05dcb-e8fda6653d8d085591d578f24d3677b29f09fa01.gz
parent cc7d0c94
No related branches found
No related tags found
No related merge requests found
......@@ -123,8 +123,13 @@ function getNS($id){
*
* @author Andreas Gohr <andi@splitbrain.org>
*/
function noNS($id){
return preg_replace('/.*:/','',$id);
function noNS($id) {
$pos = strrpos($id, ':');
if ($pos!==false) {
return substr($id, $pos+1);
} else {
return $id;
}
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment