Changeset 250 for branches/1.1dev/lib


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
  • branches/1.1dev/lib/AuthorizeNet.inc.php

    r1 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',
     
    157157        if (empty($this->_params['x_login'])) {
    158158            $this->_results['x_response_reason_text'] = _("Transaction gateway temporarily not available. Please try again later.");
    159             logMsg(sprintf('x_login not specified.', null), LOG_ERROR, __FILE__, __LINE__);
     159            logMsg(sprintf('x_login not specified.', null), LOG_ERR, __FILE__, __LINE__);
    160160            return false;
    161161        }
    162162        if (empty($this->_params['x_card_num'])) {
    163163            $this->_results['x_response_reason_text'] = _("Transaction gateway temporarily not available. Please try again later.");
    164             logMsg(sprintf('x_card_num not specified.', null), LOG_ERROR, __FILE__, __LINE__);
     164            logMsg(sprintf('x_card_num not specified.', null), LOG_ERR, __FILE__, __LINE__);
    165165            return false;
    166166        }
Note: See TracChangeset for help on using the changeset viewer.