Changeset 484 for trunk/lib/App.inc.php


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/App.inc.php

    r480 r484  
    4343
    4444    // A place to keep an object instance for the singleton pattern.
    45     private static $instance = null;
     45    protected static $instance = null;
    4646
    4747    // Namespace of this application instance.
    48     private $_ns;
     48    protected $_ns;
    4949
    5050    // If $app->start has run successfully.
     
    5555
    5656    // Array of query arguments will be carried persistently between requests.
    57     private $_carry_queries = array();
     57    protected $_carry_queries = array();
    5858
    5959    // Dictionary of global application parameters.
    60     private $_params = array();
     60    protected $_params = array();
    6161
    6262    // Default parameters.
    63     private $_param_defaults = array(
     63    protected $_param_defaults = array(
    6464
    6565        // Public name and email address for this application.
Note: See TracChangeset for help on using the changeset viewer.