summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorSimon2011-04-14 16:07:06 +0200
committerSimon2011-04-14 16:07:06 +0200
commit4dca7f509b0847a3b7d0da4029cba4f77ec50da9 (patch)
tree34c2a9318c2d41502e722991b1d90161733d00f4 /library
parentdebugging for fbgui (diff)
downloadpbs2-4dca7f509b0847a3b7d0da4029cba4f77ec50da9.tar.gz
pbs2-4dca7f509b0847a3b7d0da4029cba4f77ec50da9.tar.xz
pbs2-4dca7f509b0847a3b7d0da4029cba4f77ec50da9.zip
Schreibfehler korrigiert
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 23983a5..c4cb4ce 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 = implide("\n",$str);
+ $str = implode("\n",$str);
fputs ($fp,date("Y-m-d H:i:s",time())."\t".$str."\n");
fclose ($fp);
}