diff --git a/getid3/getid3.lib.php b/getid3/getid3.lib.php index c6d059e5..74c4368f 100644 --- a/getid3/getid3.lib.php +++ b/getid3/getid3.lib.php @@ -19,6 +19,11 @@ } } +// Available since PHP 5.6 +if (!defined('PHP_INT_MIN')) { + define('PHP_INT_MIN', ~PHP_INT_MAX); +} + class getid3_lib { /** diff --git a/getid3/getid3.php b/getid3/getid3.php index ffd35de4..9fc76436 100644 --- a/getid3/getid3.php +++ b/getid3/getid3.php @@ -387,7 +387,7 @@ class getID3 */ protected $startup_warning = ''; - const VERSION = '1.9.24-202512161137'; + const VERSION = '1.9.24-202512170412'; const FREAD_BUFFER_SIZE = 32768; const ATTACHMENTS_NONE = false;