Changeset 7912
- Timestamp:
- 08/02/09 21:44:47 (4 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/branches/2.5/amp_conf/htdocs/admin/functions.inc.php
r7808 r7912 3596 3596 function freepbx_debug($string, $option='a', $filename='/tmp/freepbx_debug.log') { 3597 3597 $fh = fopen($filename,$option); 3598 if (is_array($string) ) {3598 if (is_array($string) || is_object($string)) { 3599 3599 fwrite($fh,print_r($string,true)."\n"); 3600 3600 } else {
