Ignore:
Timestamp:
Apr 18, 2007 10:16:21 PM (17 years ago)
Author:
quinn
Message:

Fixed LOG_ERROR -> LOG_ERR in AuthorizeNet?.inc.php.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tags/2.0.2/lib/AuthorizeNet.inc.php

    r42 r250  
    1414//     'x_Exp_Date' => '042008',
    1515//     'x_Invoice_Num' => '100',
    16 //     'x_Address' => '10 rue LevouvŽ',
     16//     'x_Address' => '10 rue Levouvé',
    1717//     'x_City' => 'SomeCity',
    1818//     'x_State' => 'CA',
     
    169169        if (empty($this->_params['x_login'])) {
    170170            $this->_results['x_response_reason_text'] = _("Transaction gateway temporarily not available. Please try again later.");
    171             App::logMsg(sprintf('x_login not specified.', null), LOG_ERROR, __FILE__, __LINE__);
     171            App::logMsg(sprintf('x_login not specified.', null), LOG_ERR, __FILE__, __LINE__);
    172172            return false;
    173173        }
    174174        if (empty($this->_params['x_card_num'])) {
    175175            $this->_results['x_response_reason_text'] = _("Transaction gateway temporarily not available. Please try again later.");
    176             App::logMsg(sprintf('x_card_num not specified.', null), LOG_ERROR, __FILE__, __LINE__);
     176            App::logMsg(sprintf('x_card_num not specified.', null), LOG_ERR, __FILE__, __LINE__);
    177177            return false;
    178178        }
Note: See TracChangeset for help on using the changeset viewer.