summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorSimon2011-04-14 16:07:46 +0200
committerSimon2011-04-14 16:07:46 +0200
commitb852b365d1934a8bee19ed24bb3722b0e8b367f4 (patch)
tree4a4af97f93a21d792b1e20bd5c61c9f3f73ec942 /library
parentSchreibfehler korrigiert (diff)
downloadpbs2-b852b365d1934a8bee19ed24bb3722b0e8b367f4.tar.gz
pbs2-b852b365d1934a8bee19ed24bb3722b0e8b367f4.tar.xz
pbs2-b852b365d1934a8bee19ed24bb3722b0e8b367f4.zip
fix
Diffstat (limited to 'library')
-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);
}