diff options
author | Simon Rettberg | 2016-08-29 17:12:05 +0200 |
---|---|---|
committer | Simon Rettberg | 2016-08-29 17:12:05 +0200 |
commit | 03ed0b04eec7603b4519217a41a428e87bbc0291 (patch) | |
tree | aae7dda0db2c56c9b65220eeb4ee4078fd73a8d1 /inc/eventlog.inc.php | |
parent | [baseconfig*] Fix translation hook to only consider the current module (diff) | |
download | slx-admin-03ed0b04eec7603b4519217a41a428e87bbc0291.tar.gz slx-admin-03ed0b04eec7603b4519217a41a428e87bbc0291.tar.xz slx-admin-03ed0b04eec7603b4519217a41a428e87bbc0291.zip |
[eventlog] Don't die on DB insert error
Diffstat (limited to 'inc/eventlog.inc.php')
-rw-r--r-- | inc/eventlog.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/eventlog.inc.php b/inc/eventlog.inc.php index 6683986c..3ebb82a4 100644 --- a/inc/eventlog.inc.php +++ b/inc/eventlog.inc.php @@ -22,7 +22,7 @@ class EventLog 'type' => $type, 'message' => $message, 'details' => $details - )); + ), true); } public static function failure($message, $details = '') |