Index: branches/unlabeled/unlabeled-1.59.2/core/kernel/utility/debugger.php =================================================================== diff -u -r5767 -r5778 --- branches/unlabeled/unlabeled-1.59.2/core/kernel/utility/debugger.php (.../debugger.php) (revision 5767) +++ branches/unlabeled/unlabeled-1.59.2/core/kernel/utility/debugger.php (.../debugger.php) (revision 5778) @@ -144,7 +144,7 @@ $application =& kApplication::Instance(); // string used to separate debugger records while in file (used in debugger dump filename too) - $this->rowSeparator = '@'.$application->GetSID().'@'; + $this->rowSeparator = '@'.(is_object($application->Factory) ? $application->GetSID() : 0).'@'; // include debugger files from this url $reg_exp = '/^'.preg_quote(FULL_PATH, '/').'/';