I was looking through the Wordpress core, and I found this function:
function unserialize ( $data ) {
return unserialize( $data );
}
First off, I don't even understand why unserialize has been defined since its a native php function. Secondly, what in the world is going on here since its defined recursively without any condition to halt infinite recursion?
Throw me a bone. I'm newbie at this stuff.