Ignore:
Timestamp:
Apr 17, 2010, 2:29:03 PM (15 years ago)
Author:
ddboer
Message:

added mail to config

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/inc/LogHandler.class.php

    r7773 r7803  
    9595
    9696                                //Check if the file can be opened
    97                                 if (!$handle = fopen($filename, 'w')) {
     97                                if (!$handle = fopen($filename, 'a')) {
    9898                                        define('IGNORE_LOG_LEVEL_WRITE', true);
    9999                                        trigger_log(SYSLOG_EMERG, 'Cannot open file "' . $filename . '"', __FILE__, __LINE__);
     
    117117
    118118                if ($logno <= LOG_LEVEL_MAIL) {
    119                         mail('test@test.com', 'Nodemap error', $errorString);
     119                        global $config;
     120                        mail($config['mail'], 'Nodemap error', $errorString);
    120121                }
    121122        }
Note: See TracChangeset for help on using the changeset viewer.