@@ -2651,6 +2651,7 @@ function privDisableMagicQuotes()
2651
2651
function privSwapBackMagicQuotes()
2652
2652
{
2653
2653
}
2654
+ // --------------------------------------------------------------------------------
2654
2655
}
2655
2656
/**
2656
2657
* Upgrader API: Plugin_Installer_Skin class
@@ -14059,6 +14060,9 @@ public function quicktime_time_to_sample_table($info)
14059
14060
public function quicktime_bookmark_time_scale($info)
14060
14061
{
14061
14062
}
14063
+ /*
14064
+ // END helper functions for m4b audiobook chapters
14065
+ */
14062
14066
}
14063
14067
class getid3_riff extends \getid3_handler
14064
14068
{
@@ -14320,7 +14324,7 @@ class getid3_dts extends \getid3_handler
14320
14324
/**
14321
14325
* Default DTS syncword used in native .cpt or .dts formats.
14322
14326
*/
14323
- const syncword = "��\1 ";
14327
+ const syncword = "\xfe\x80\x01 ";
14324
14328
/**
14325
14329
* @var int
14326
14330
*/
@@ -14329,13 +14333,13 @@ class getid3_dts extends \getid3_handler
14329
14333
* Possible syncwords indicating bitstream encoding.
14330
14334
*/
14331
14335
public static $syncwords = array(
14332
- 0 => "��\1 ",
14336
+ 0 => "\xfe\x80\x01 ",
14333
14337
// raw big-endian
14334
- 1 => "�\1� ",
14338
+ 1 => "\xfe\x01\x80 ",
14335
14339
// raw little-endian
14336
- 2 => "\37��\0 ",
14340
+ 2 => "\x1f\xff\xe8\x00 ",
14337
14341
// 14-bit big-endian
14338
- 3 => "�\37\0� ",
14342
+ 3 => "\xff\x1f\x00\xe8 ",
14339
14343
);
14340
14344
// 14-bit little-endian
14341
14345
/**
@@ -40077,6 +40081,7 @@ public static function test($args = array())
40077
40081
*/
40078
40082
class WP_HTTP_Fsockopen extends \WP_HTTP_Streams
40079
40083
{
40084
+ // For backward compatibility for users who are using the class directly.
40080
40085
}
40081
40086
/**
40082
40087
* Base WordPress Image Editor
0 commit comments