Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions interface/globals.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@
//
ini_set('session.gc_maxlifetime', '14400');

// Hide deprecated and notice warnings from UI
error_reporting(E_ALL & ~E_DEPRECATED & ~E_NOTICE);
ini_set('display_errors', 'Off');

// This is for sanitization of all escapes.
// (ie. reversing magic quotes if it's set)
if (isset($sanitize_all_escapes) && $sanitize_all_escapes) {
Expand Down