text => label(php5-ofc-library/lib/OFC/Charts/OFC_Charts_Pi)
Brought to you by:
monk-e-boy
class OFC_Charts_Pie_Value
{
function OFC_Charts_Pie_Value( $value, $text )
{
$this->value = $value;
$this->text = $text;
}
}
should be
class OFC_Charts_Pie_Value
{
function OFC_Charts_Pie_Value( $value, $text )
{
$this->value = $value;
$this->label = $text;
}
}