For fix it you have to edit the next line in the file /lib/item.php
if( isset($this->attributes['WeaponDPS']) )
{
$html .= $this->attributes['WeaponDPS'] . '<br />';
}
For this one.
if( isset($this->attributes['WeaponDPS']) )
{
$html = $this->attributes['WeaponDPS'] . '<br />';
}