[Openfirst-cvscommit] base/includes functions.php,1.12,1.13
Brought to you by:
xtimg
From: Jamie <ast...@us...> - 2005-11-22 16:27:05
|
Update of /cvsroot/openfirst/base/includes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23731/includes Modified Files: functions.php Log Message: added ofStackTrace() Index: functions.php =================================================================== RCS file: /cvsroot/openfirst/base/includes/functions.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** functions.php 19 Nov 2005 02:09:41 -0000 1.12 --- functions.php 22 Nov 2005 16:26:53 -0000 1.13 *************** *** 211,213 **** --- 211,219 ---- version_compare($left, $right); } + + function ofStackTrace() { + echo '<pre class="stack-trace">'; + debug_print_backtrace(); + echo '</pre>'; + } ?> \ No newline at end of file |