|
Okay, I'll go get it right now.
Okay From 54 to 67:
/**
* Fetches a Profile Block object
*
* @param string The name of the class
*/
function &fetch($class)
{
if (!isset($this->cache["$class"]) OR !is_object($this->cache["$class"]))
{
$classname = "vB_ProfileBlock_$class";
$this->cache["$class"] =& new $classname($this->registry, $this->profile, $this);
}
return $this->cache["$class"];
This is 67 return $this->cache["$class"];
__________________
Hi Mom
Hi Dad
Last edited by dominic95; 04-02-2009 at 03:27 PM..
|