Changeset 725


Ignore:
Timestamp:
May 4, 2020 3:37:44 PM (4 years ago)
Author:
anonymous
Message:
 
File:
1 edited

Legend:

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

    r724 r725  
    433433                        $db_auth = json_decode(file_get_contents($db_auth_file), true);
    434434                        if (is_null($db_auth)) {
    435                             $app->logMsg(sprintf('Unable to decode json in DB auth file: %s', $db_auth_file), LOG_ERR, __FILE__, __LINE__);
     435                            $this->logMsg(sprintf('Unable to decode json in DB auth file: %s', $db_auth_file), LOG_ERR, __FILE__, __LINE__);
    436436                        } else {
    437437                            $this->setParam($db_auth);
     
    17301730    public function sslOn()
    17311731    {
    1732         $app =& App::getInstance();
    1733         $app->logMsg(sprintf('sslOn was called and ignored.', null), LOG_DEBUG, __FILE__, __LINE__);
     1732        $this->logMsg(sprintf('sslOn was called and ignored.', null), LOG_DEBUG, __FILE__, __LINE__);
    17341733    }
    17351734
     
    17391738    public function sslOff()
    17401739    {
    1741         $app =& App::getInstance();
    1742         $app->logMsg(sprintf('sslOff was called and ignored.', null), LOG_DEBUG, __FILE__, __LINE__);
     1740        $this->logMsg(sprintf('sslOff was called and ignored.', null), LOG_DEBUG, __FILE__, __LINE__);
    17431741    }
    17441742
Note: See TracChangeset for help on using the changeset viewer.