Revision: 16
http://phpsysinfo.svn.sourceforge.net/phpsysinfo/?rev=16&view=rev
Author: bigmichi1
Date: 2007-01-05 14:57:49 -0800 (Fri, 05 Jan 2007)
Log Message:
-----------
typo in comment,
avoid "//"
Modified Paths:
--------------
phpsysinfo/objects/class.Error.inc.php
Modified: phpsysinfo/objects/class.Error.inc.php
===================================================================
--- phpsysinfo/objects/class.Error.inc.php 2007-01-05 22:36:13 UTC (rev 15)
+++ phpsysinfo/objects/class.Error.inc.php 2007-01-05 22:57:49 UTC (rev 16)
@@ -182,13 +182,13 @@
if( $val == $arrTrace[count( $arrTrace ) - 1]) {
break;
}
- $strBacktrace .= $strIndent . str_replace( APP_ROOT, ".", $val['file'] ).' on line ' . $val['line'];
+ $strBacktrace .= $strIndent . str_replace( APP_ROOT, "./", $val['file'] ).' on line ' . $val['line'];
if( $strFunc ) {
$strBacktrace .= ' in function ' . $strFunc;
}
if( $val['function'] == 'include' || $val['function'] == 'require' || $val['function'] == 'include_once' || $val['function'] == 'require_once' ) {
$strFunc = '';
- } else {
+ } else {
$strFunc = $val['function'] . '(';
if( isset( $val['args'][0] ) ) {
$strFunc .= ' ';
@@ -209,7 +209,7 @@
/**
* convert some special vars into better readable output
*
- * @param mixed value, wchich should be formatted
+ * @param mixed value, which should be formatted
* @return string formatted string
*/
private function print_var( $var ) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|