summarylogtreecommitdiffstats
path: root/002-mythweb.patch
diff options
context:
space:
mode:
Diffstat (limited to '002-mythweb.patch')
-rw-r--r--002-mythweb.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/002-mythweb.patch b/002-mythweb.patch
deleted file mode 100644
index bf3babfac4dd..000000000000
--- a/002-mythweb.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-diff --git a/modules/tv/search.php b/modules/tv/search.php
-index 468b3422..3fe893c7 100644
---- a/modules/tv/search.php
-+++ b/modules/tv/search.php
-@@ -344,7 +344,7 @@
- case 'Recorded':
- case 'NeverRecord':
- unset($Results[$key]);
-- continue;
-+ break;
- }
- }
- }
-@@ -358,7 +358,7 @@
- case 'EarlierShowing':
- case 'LaterShowing':
- unset($Results[$key]);
-- continue;
-+ break;
- }
- }
- }
-@@ -457,11 +457,11 @@
- case 'both':
- return $db->escape($value);
- case 'start':
-- return $db->escape(preg_replace('/[\\s-_]+/', '%', $value).'%');
-+ return $db->escape(preg_replace('/[\\s_-]+/', '%', $value).'%');
- case 'end':
-- return $db->escape('%'.preg_replace('/[\\s-_]+/', '%', $value));
-+ return $db->escape('%'.preg_replace('/[\\s_-]+/', '%', $value));
- default:
-- return $db->escape('%'.preg_replace('/[\\s-_]+/', '%', $value).'%');
-+ return $db->escape('%'.preg_replace('/[\\s_-]+/', '%', $value).'%');
- }
- }