From e63516ae87c510d263a5ff1f5768d902972b668e Mon Sep 17 00:00:00 2001 From: Marco Dickert Date: Sun, 5 Mar 2017 22:29:53 +0100 Subject: [PATCH] fixed use of undefined constant ON --- ifm.php | 2 +- src/main.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ifm.php b/ifm.php index 6e0dbfa..35cfcee 100644 --- a/ifm.php +++ b/ifm.php @@ -130,7 +130,7 @@ class IFMZip { */ error_reporting( E_ALL ); -ini_set( 'display_errors', ON ); +ini_set( 'display_errors', 'ON' ); class IFM { const VERSION = '2.3.1'; diff --git a/src/main.php b/src/main.php index 41574d7..da74a07 100644 --- a/src/main.php +++ b/src/main.php @@ -11,7 +11,7 @@ */ error_reporting( E_ALL ); -ini_set( 'display_errors', ON ); +ini_set( 'display_errors', 'ON' ); class IFM { const VERSION = '2.3.1';