If anyone can help me I would be thankful. I am getting this error.
<b>Warning</b>: Missing argument 1 for DonationSession::GetPaymentURL(), called in /home/desolutionrp/public_html/web/payment.php on line 18 and defined in <b>/public_html/web/inc/donate.class.php</b> on line <b>95</b><br />
<b>Warning</b>: Cannot modify header information - headers already sent by (output started at /home/desolutionrp/public_html/web/inc/donate.class.php:95) in <b>/public_html/web/payment.php</b> on line <b>18</b><br />
I checked out what's on those lines and for the first error this is the line:
function GetPaymentURL($email) {
return "https://www." . (config_Sandbox ? "sandbox." : "") . "paypal.com/cgi-bin/webscr?on0=donationid&os0=" .$this->index . "&on1=steamid&os1=" . $this->steamid . "&cmd=_xclick&business=" . config_PayPalEmail . "&no_shipping=1¤cy_code=USD&lc=EN&item_name=" . config_ProductName . "&amount=" . $this->value;
}
And for the second error the line says:
header("Location:" . $donation->GetPaymentURL());