summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
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);
}