summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--library/Pbs/Debug.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/Pbs/Debug.php b/library/Pbs/Debug.php
index c4cb4ce..0a5231e 100644
--- a/library/Pbs/Debug.php
+++ b/library/Pbs/Debug.php
@@ -6,7 +6,7 @@ class Pbs_Debug{
@mkdir($path ,0777, true);
$fp = fopen($path.'lastsession.txt', "a");
if(is_array($str))
- $str = implode("\n",$str);
+ $str = implode("\t",$str);
fputs ($fp,date("Y-m-d H:i:s",time())."\t".$str."\n");
fclose ($fp);
}