%%generic-pickup-anonymous-html%%
2002-07-16 21:17

%%preprocess%%
$this->getBaseUrl();

// add classname:id to $session->p_inventory
$item= "$this->objtype:$this->id";
if ($session->p_inventory) {
	berror("generic-pickup-anonymous-html: adding $item to existing p_inventory ($session->p_inventory)",1);
	$GLOBALS[session]->p_inventory= trim($session->p_inventory)." $item";
	}
else {
	berror("generic-pickup-anonymous-html: creating p_inventory with $item.",1);
	$GLOBALS[session]->p_inventory= "$item";
	}

%%header%%

%%css%%

%%template%%
Picked up $this->objtype:$this->id ($this->title).<br>
<a href="$this->idUrl?method=view$session->cgi">Continue</a>...

%%listrow%%

%%nullobject%%

%%footer%%

%%postprocess%%
if (!$GLOBALS['debug']) {
	header("Location: $this->idUrl?method=view$session->cgi");
	print "Redirecting to $this->idUrl now.";
	}
 
%%end of context%%
