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


Ignore:
Timestamp:
Nov 14, 2005 6:22:44 AM (19 years ago)
Author:
scdev
Message:

Rebuilt the services/admins.php script and templates. Fixes since v2 conversion. Lots of bugs and more to come!

File:
1 edited

Legend:

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

    r18 r19  
    8787   
    8888        // Directory in which to store log files.
    89         'log_directory' => null,
     89        'log_directory' => '',
    9090
    9191        // PHP error log.
     
    112112        'log_to_email_address' => null,
    113113       
    114         // SMS Email address to receive log event SMS messages
     114        // SMS Email address to receive log event SMS messages.
    115115        'log_to_sms_address' => null,
    116    
    117         // A key for calculating simple cryptographic signatures. Set using as an environment variables in the httpd.conf with 'SetEnv SIGNING_KEY <key>'
     116       
     117        // The from address used for system emails.
     118        'envelope_sender_address' => '',
     119   
     120        // A key for calculating simple cryptographic signatures. Set using as an environment variables in the httpd.conf with 'SetEnv SIGNING_KEY <key>'.
    118121        'signing_key' => 'aae6abd6209d82a691a9f96384a7634a',
    119122    );
     
    190193            return $this->_params[$param];
    191194        } else {
    192             App::logMsg(sprintf('Parameter is not set: %s', $param), LOG_DEBUG, __FILE__, __LINE__);
     195            trigger_error(sprintf('Parameter is not set: %s', $param), E_USER_NOTICE);
    193196            return null;
    194197        }
Note: See TracChangeset for help on using the changeset viewer.