summaryrefslogtreecommitdiffstats
path: root/abs/core/mythtv/stable-0.25/mythweb/sorting.php.patch
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2012-11-02 22:20:15 (GMT)
committerJames Meyer <james.meyer@operamail.com>2012-11-02 22:20:15 (GMT)
commit7a0af293fd1a81fb643acbb954d319786035e44e (patch)
tree21d4e03a6268bbaee8a3e803f3841bd58c720e26 /abs/core/mythtv/stable-0.25/mythweb/sorting.php.patch
parente851f51157ac00aa3de03f4bb9743c6a7d91bea8 (diff)
downloadlinhes_pkgbuild-7a0af293fd1a81fb643acbb954d319786035e44e.zip
linhes_pkgbuild-7a0af293fd1a81fb643acbb954d319786035e44e.tar.gz
linhes_pkgbuild-7a0af293fd1a81fb643acbb954d319786035e44e.tar.bz2
mythtv: applied mythweb and php bindings patch to allow mythweb to work with php 5.4
refs #861 closes #861
Diffstat (limited to 'abs/core/mythtv/stable-0.25/mythweb/sorting.php.patch')
-rw-r--r--abs/core/mythtv/stable-0.25/mythweb/sorting.php.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/abs/core/mythtv/stable-0.25/mythweb/sorting.php.patch b/abs/core/mythtv/stable-0.25/mythweb/sorting.php.patch
new file mode 100644
index 0000000..2f76216
--- /dev/null
+++ b/abs/core/mythtv/stable-0.25/mythweb/sorting.php.patch
@@ -0,0 +1,19 @@
+*** includes/sorting.php.old 2011-04-03 06:05:31.000000000 -0500
+--- includes/sorting.php 2012-03-27 05:05:51.000000000 -0500
+***************
+*** 123,129 ****
+ function by_user_choice(&$a, &$b) {
+ foreach ($GLOBALS['user_sort_choice'] as $sort) {
+ $function = 'by_'.$sort['field'];
+! $response = $function(&$a, &$b);
+ // Identical response, go on to the next sort choice
+ if (!$response)
+ continue;
+--- 123,129 ----
+ function by_user_choice(&$a, &$b) {
+ foreach ($GLOBALS['user_sort_choice'] as $sort) {
+ $function = 'by_'.$sort['field'];
+! $response = $function($a, $b);
+ // Identical response, go on to the next sort choice
+ if (!$response)
+ continue;