Ignore:
Timestamp:
Jul 30, 2014 10:43:49 PM (10 years ago)
Author:
anonymous
Message:

Changed private methods and properties to protected. A few minor bug fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/PayPal.inc.php

    r479 r484  
    3333
    3434    // General object parameters.
    35     private $_params = array(
     35    protected $_params = array(
    3636        'paypal_url' => 'https://www.paypal.com/cgi-bin/webscr',
    3737        'test_mode' => false,
     
    3939
    4040    // Options used for specific buttons and links.
    41     private $_default_button_options = array();
     41    protected $_default_button_options = array();
    4242
    4343    // Array of buttons created by newButton().
    44     private $_buttons = array();
     44    protected $_buttons = array();
    4545
    4646    // Store the response from the last IPN.
    47     private $_ipn_response;
     47    protected $_ipn_response;
    4848
    4949    /**
Note: See TracChangeset for help on using the changeset viewer.