email format
This commit is contained in:
@@ -25,6 +25,7 @@ long PastDueWarings(CVars in, CVars &out);
|
||||
long PastDueOffersRefund(CVars in, CVars &out);
|
||||
long NotificationSystem(CVars in, CVars &out);
|
||||
long CronTracker(CVars in, CVars &out);
|
||||
long SendMoneyPending(CVars in, CVars &out);
|
||||
/*
|
||||
CREATE TABLE cron_jobs (
|
||||
id SERIAL,
|
||||
@@ -102,7 +103,7 @@ long sitecrons_calls(CVars in, CVars &out) {
|
||||
ct["job_type"]="WRB_CRONJOB_PENDINGSM"; ct["job_type"].set_valid( true );
|
||||
ct["description"]="Alert Pending Transfers "; ct["description"].set_valid( true );
|
||||
CronTracker(ct, co);
|
||||
return 0; //NotificationSystem(in, out);
|
||||
return SendMoneyPending(in, out);
|
||||
break;
|
||||
|
||||
case WRB_CRONJOB_GROUPJOBS:
|
||||
@@ -118,6 +119,11 @@ long sitecrons_calls(CVars in, CVars &out) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
long SendMoneyPending(CVars in, CVars &out){
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
long NotificationSystem(CVars in, CVars &out){
|
||||
long ret = 0;
|
||||
//const PGresult *res;
|
||||
|
||||
Reference in New Issue
Block a user