Hola gente, tengo un problemita con el siguiente error
Missing argument 5 for fees::form_dineromail(), called in ...\class_fees.php on line 690 and defined in ...\class_fees.php on line 233
pues bien estoy trabajando en ese archivo sobre una pasarela de pago y no puedo solucionar ese error, no se por q me lo tira, este seria el codigo completo del error de esa linea
Cita: function form_dineromail ($transaction_id, $payment_description, $dineromail_member_id, $dineromail_password, $payment_amount, $direct_payment=FALSE, $post_url='https://www.dineromail.com/Shop/Shop_Ingreso.asp')
{
(string) $display_output = null;
$transaction_id = $transaction_id . 'TBL' . md5(rand());
$display_output = '<table width="100%" border="0" cellspacing="2" cellpadding="3" class="paymenttable"> '.
'<tr>'.
' <td width="160" class="paytable1"><img src="img/dinero.gif"></td>'.
' <form method="post" action="' .$post_url. '" > '.
' <td class="paytable2" width="100%">' . GMSG_DINEROMAIL_DESCRIPTION . '</td> '.
' <td class="paytable3"> '.
'<input type="hidden" name="NombreItem" value="'.$payment_description.'">'.
'<input type="hidden" name="TipoMoneda" value="1">'.
'<input type="hidden" name="PrecioItem" value="'.$payment_amount.'">'.
'<input type="hidden" name="E_Comercio" value="'.$dineromail_member_id.'">'.
'<input type="hidden" name="NroItem" value="'.$transaction_id.'">'.
'<input type="hidden" name="MediosPago" value="4,5,6,21,23,2,7">'.
'<input type="hidden" value="http://www.paganet.com.ar/images/logo.png" name="image_url">'.
'<input type="hidden" name="DireccionEnvio" value="1">'.
'<input type="hidden" name="Mensaje" value="1">'.
' <input type="hidden" value="'.$this->process_url.'" name="DireccionExito"> '.
' <input type="hidden" value="'.$this->return_url.'" name="return_url"> '.
' <input type="hidden" value="'.$this->failure_url.'" name="DireccionFracaso"> '.
' <input name="submit" type="image" src="themes/' . $this->setts['default_theme'] . '/img/system/but_pay.gif" border="0"> '.
' </td></form> '.
'</tr></table>';
return $display_output;
}
bueno esperoa alguien me pueda dar una idea, desde ya gracias