X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/7b56160975b8ef93b24fb6d1128d557efab2b7da..a753fb8c16995eda2df899df85d5f0c7668bad6c:/lib/utils.inc.php?ds=sidebyside
diff --git a/lib/utils.inc.php b/lib/utils.inc.php
index 773e45f..89f226d 100644
--- a/lib/utils.inc.php
+++ b/lib/utils.inc.php
@@ -1,6 +1,7 @@
root .'config.php';
+require_once $CFG->root . 'lib/session_handler.inc.php';
class Utils {
@@ -18,6 +19,7 @@ class Utils {
+
__TITLE__
';
@@ -91,10 +93,11 @@ class Utils {
} else {
$file = $CFG->root.'qtadmin.log';
}
- file_put_contents($file, "[$time]: $message", FILE_APPEND | LOCK_EX);
+ file_put_contents($file, "[$time]: $message\n", FILE_APPEND | LOCK_EX);
+ chmod($file, 0600);
break;
case 'stderr':
- file_put_contents('php://stderr', "[$time]: $message");
+ file_put_contents('php://stderr', "[$time]: $message\n");
break;
case 'syslog':
syslog($priority, $message);