summarylogtreecommitdiffstats
path: root/mythweb-php_7.2.patch
diff options
context:
space:
mode:
Diffstat (limited to 'mythweb-php_7.2.patch')
-rw-r--r--mythweb-php_7.2.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/mythweb-php_7.2.patch b/mythweb-php_7.2.patch
deleted file mode 100644
index a13493cddb01..000000000000
--- a/mythweb-php_7.2.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Index: modules/tv/recorded.php
-===================================================================
---- a/modules/tv/recorded.php (revision 6976c802b700dfed902c5173ca2d1080902508c6)
-+++ b/modules/tv/recorded.php (revision 664dc1707ccf7be8b0b1d9eadf6366de8bbaa9c9)
-@@ -180,12 +180,12 @@
- // GMP functions should work better with 64 bit numbers.
- $size = gmp_mul('1024', $size);
-- define(disk_size, gmp_strval($size));
-+ define('disk_size', gmp_strval($size));
- $size = gmp_mul('1024', $used);
-- define(disk_used, gmp_strval($size));
-+ define('disk_used', gmp_strval($size));
- }
- else {
- // This is inaccurate, but it's the best we can get without GMP.
-- define(disk_size, ($size * 1024));
-- define(disk_used, ($used * 1024));
-+ define('disk_size', ($size * 1024));
-+ define('disk_used', ($used * 1024));
- }
-