Changeset 3183

Show
Ignore:
Timestamp:
11/24/06 17:59:04 (7 years ago)
Author:
gregmac
Message:

Add freepbx_log() description from 2.2

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/amp_conf/htdocs/admin/functions.inc.php

    r3161 r3183  
    10931093      // echo "(From amportal.conf)"; //debug 
    10941094    } else { 
    1095     $fn = "http://mirror.freepbx.org/modules-".$matches[1].".xml"; 
     1095    $fn = "http://mirror.freepbx.org/modules-".$matches[1].".xml"; 
    10961096      // echo "(From default)"; //debug 
    10971097    } 
     
    20872087 
    20882088 
     2089/** Log an error to the (database-based) log 
     2090 * @param  string   The section or script where the error occured 
     2091 * @param  string   The level/severity of the error. Valid levels: 'error', 'warning', 'debug', 'devel-debug' 
     2092 * @param  string   The error message 
     2093 */ 
    20892094function freepbx_log($section, $level, $message) { 
    20902095        global $db;