Let you call detail of a card from impression->category -> historic

This commit is contained in:
Dany De Bontridder 2011-02-07 11:03:01 +00:00
parent 1a6f99c13e
commit 6d51e41b59
2 changed files with 5 additions and 4 deletions

View file

@ -458,12 +458,12 @@ class HtmlInput
/**
*show the detail of a card
*/
static function card_detail($p_qcode,$pname='')
static function card_detail($p_qcode,$pname='',$p_style="")
{
if ($pname=='')$pname=$p_qcode;
$r="";
$r.=sprintf('<a href="javascript:void(0)" onclick="fill_ipopcard({qcode:\'%s\'})">%s[%s]</a>',
$p_qcode,$pname,$p_qcode);
$r.=sprintf('<a href="javascript:void(0)" onclick="fill_ipopcard({qcode:\'%s\'})">%s[%s]</a %s>',
$p_qcode,$pname,$p_qcode,$p_style);
return $r;
}
/**