diff options
author | Christian Schneider | 2007-11-29 00:02:45 +0000 |
---|---|---|
committer | Christian Schneider | 2007-11-29 00:02:45 +0000 |
commit | 38d0eb38626ceb7fb32968d2dce901d8d519714b (patch) | |
tree | e735945133b53f7327ea7c7e4d4755d650781a43 /it.class | |
parent | fc907558734ce439f5df2e16ffe1be7b5f30860b (diff) | |
download | itools-38d0eb38626ceb7fb32968d2dce901d8d519714b.tar.gz itools-38d0eb38626ceb7fb32968d2dce901d8d519714b.tar.bz2 itools-38d0eb38626ceb7fb32968d2dce901d8d519714b.zip |
Indentation style fix
Diffstat (limited to 'it.class')
-rw-r--r-- | it.class | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -215,7 +215,8 @@ function error($p = array(), $body = null, $to = null) # $body and $to deprecate error_log("it::error: " . $p['title'] . " in " . ($trace ? $trace : "{$p['file']}:{$p['line']}") . " Url: $url " . (EDC('verbose') ? D($p['locals']) : "")); } - if (($fh = fopen("/tmp/alertdata/alert.log", "a"))) { + if (($fh = fopen("/tmp/alertdata/alert.log", "a"))) + { fputs($fh, $p['title'] . " in " . ($trace ? $trace : "{$p['file']}:{$p['line']}") . " Url: $url\n"); fclose($fh); @chmod("/tmp/alertdata/alert.log", 0777); |