Changeset 484

Show
Ignore:
Timestamp:
01/06/08 19:25:54 (1 year ago)
Author:
stavros
Message:

BUG: auto assigning CallerID to cards after first PIN auth was broken by my recent changes to add limit_callerid support.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/1.3/A2BCustomer_UI/lib/Class.A2Billing.php

    r457 r484  
    19041904                                        $result = $this->instance_table -> SQLExec ($this->DBHandle, $QUERY, 1);  
    19051905                                        // CHECK IF THE AMOUNT OF CALLERID IS LESS THAN THE LIMIT  
    1906                                         if ($result[0][0] < $A2B->config["webcustomerui"]['limit_callerid']) { 
     1906                                        if ($result[0][0] < $this->config["webcustomerui"]['limit_callerid']) { 
    19071907                                                 
    19081908                                                $QUERY_FIELS = 'cid, id_cc_card'; 
  • branches/1.3/A2Billing_AGI/libs_a2billing/Class.A2Billing.php

    r457 r484  
    19041904                                        $result = $this->instance_table -> SQLExec ($this->DBHandle, $QUERY, 1);  
    19051905                                        // CHECK IF THE AMOUNT OF CALLERID IS LESS THAN THE LIMIT  
    1906                                         if ($result[0][0] < $A2B->config["webcustomerui"]['limit_callerid']) { 
     1906                                        if ($result[0][0] < $this->config["webcustomerui"]['limit_callerid']) { 
    19071907                                                 
    19081908                                                $QUERY_FIELS = 'cid, id_cc_card'; 
  • branches/1.3/A2Billing_UI/lib/Class.A2Billing.php

    r457 r484  
    19041904                                        $result = $this->instance_table -> SQLExec ($this->DBHandle, $QUERY, 1);  
    19051905                                        // CHECK IF THE AMOUNT OF CALLERID IS LESS THAN THE LIMIT  
    1906                                         if ($result[0][0] < $A2B->config["webcustomerui"]['limit_callerid']) { 
     1906                                        if ($result[0][0] < $this->config["webcustomerui"]['limit_callerid']) { 
    19071907                                                 
    19081908                                                $QUERY_FIELS = 'cid, id_cc_card'; 


Google