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

    r481 r484  
    5555
    5656    // Namespace of this instance of Prefs.
    57     private $_ns;
     57    protected $_ns;
    5858
    5959    // Configuration parameters for this object.
    60     private $_params = array(
     60    protected $_params = array(
    6161
    6262        // Store preferences in one of the available storage mechanisms: session, cookie, database
     
    497497    * @since    04 Jun 2006 17:12:44
    498498    */
    499     private function _isLoaded()
     499    protected function _isLoaded()
    500500    {
    501501        if ('database' != $this->getParam('storagetype')) {
     
    584584    * @since    02 May 2014 18:17:04
    585585    */
    586     private function _getCookieName($key)
     586    protected function _getCookieName($key)
    587587    {
    588588        $app =& App::getInstance();
Note: See TracChangeset for help on using the changeset viewer.