You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Doctrine Lexer,2.1.0,github.com/doctrine/lexer,2.1.0/3.0.0,needed by swiftmailer v6
4
4
Doctrine Deprecations,1.1.2,github.com/doctrine/deprecations,1.1.2,needed by Doctrine Lexer v2
5
-
EmailValidator,3.2.6,github.com/egulias/EmailValidator,3.2.6/4.0.1,needed by swiftmailer v6; change folder structure and add autoloader to main file
5
+
EmailValidator,3.2.6,github.com/egulias/EmailValidator,3.2.6/4.0.2,needed by swiftmailer v6; change folder structure and add autoloader to main file
6
6
ups-php,0.2,github.com/sanbornm/ups-php,0.2,"updated/fixed xml, etc to work"
7
7
fedex-php,31.0.0,www.fedex.com/wpor/web/jsp/drclinks.jsp?links=wss/getstarted.html,31.0.0,copy/edit RateAvailableServicesWebServiceClient.php into fedexshippingcalculator->getRates()
8
8
Smarty,3.1.27/4.3.4,smarty.net,4.3.4,
9
9
phpthumb,1.7.22exp,github.com/JamesHeinrich/phpThumb,1.7.22,phpThumb.config.php - we also allow & in parsing and err command
DateTimePicker,2.5.21exp,github.com/xdan/datetimepicker,2.5.21,rename .full version; we add .js auto-close on inline date select and extra 'reset' work & remove .css z-index issue
80
80
Bootstrap DateTimePicker,4.17.49,github.com/Eonasdan/bootstrap-datetimepicker,4.17.49,"patch for 'today' button in side-by-side view, modded version placed in bootstrap4theme & bootstrap5theme to help yadcf"
81
81
Tempus Dominus Bootstrap 4,5.39.0,github.com/tempusdominus/bootstrap-4,5.39.0,
82
-
Tempus Dominus Bootstrap 5,6.7.16,github.com/Eonasdan/tempus-dominus,6.7.19,added .inline z-index style; scss change @use color
82
+
Tempus Dominus Bootstrap 5,6.7.16,github.com/Eonasdan/tempus-dominus,6.9.4,added .inline z-index style; scss change @use color
83
83
moment.js,2.29.4,github.com/moment/moment,2.29.4,needed for Bootstrap DateTimePicker; min/moment-with-locales.js renamed
Copy file name to clipboardExpand all lines: external/getid3/getid3/getid3.php
+26-6Lines changed: 26 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -387,7 +387,7 @@ class getID3
387
387
*/
388
388
protected$startup_warning = '';
389
389
390
-
constVERSION = '1.9.22-202207161647';
390
+
constVERSION = '1.9.23-202310190849';
391
391
constFREAD_BUFFER_SIZE = 32768;
392
392
393
393
constATTACHMENTS_NONE = false;
@@ -436,17 +436,17 @@ public function __construct() {
436
436
$this->startup_error .= 'WARNING: php.ini contains "mbstring.func_overload = '.ini_get('mbstring.func_overload').'", getID3 cannot run with this setting (bitmask 2 (string functions) cannot be set). Recommended to disable entirely.'."\n";
437
437
}
438
438
439
-
// check for magic quotes in PHP < 7.4.0 (when these functions became deprecated)
440
-
if (version_compare(PHP_VERSION, '7.4.0', '<')) {
439
+
// check for magic quotes in PHP < 5.4.0 (when these options were removed and getters always return false)
440
+
if (version_compare(PHP_VERSION, '5.4.0', '<')) {
441
441
// Check for magic_quotes_runtime
442
442
if (function_exists('get_magic_quotes_runtime')) {
443
-
if (get_magic_quotes_runtime()) {
443
+
if (get_magic_quotes_runtime()) {// @phpstan-ignore-line
444
444
$this->startup_error .= 'magic_quotes_runtime must be disabled before running getID3(). Surround getid3 block by set_magic_quotes_runtime(0) and set_magic_quotes_runtime(1).'."\n";
445
445
}
446
446
}
447
447
// Check for magic_quotes_gpc
448
448
if (function_exists('get_magic_quotes_gpc')) {
449
-
if (get_magic_quotes_gpc()) {
449
+
if (get_magic_quotes_gpc()) {// @phpstan-ignore-line
450
450
$this->startup_error .= 'magic_quotes_gpc must be disabled before running getID3(). Surround getid3 block by set_magic_quotes_gpc(0) and set_magic_quotes_gpc(1).'."\n";
451
451
}
452
452
}
@@ -1464,6 +1464,16 @@ public function GetFileFormatArray() {
1464
1464
'fail_ape' => 'ERROR',
1465
1465
),
1466
1466
1467
+
// XZ - data - XZ compressed data
1468
+
'7zip' => array(
1469
+
'pattern' => '^7z\\xBC\\xAF\\x27\\x1C',
1470
+
'group' => 'archive',
1471
+
'module' => '7zip',
1472
+
'mime_type' => 'application/x-7z-compressed',
1473
+
'fail_id3' => 'ERROR',
1474
+
'fail_ape' => 'ERROR',
1475
+
),
1476
+
1467
1477
1468
1478
// Misc other formats
1469
1479
@@ -1977,7 +1987,7 @@ public function CalculateCompressionRatioVideo() {
0 commit comments