diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-12-20 16:52:43 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-12-20 16:52:43 +0000 |
commit | d8ea07a04acc03160ac73f5db2a9249890e5fd13 (patch) | |
tree | 63e0dfedbfc9565a265cb342da405cd79b4ff341 /lib/init.php | |
parent | 69c56f829da3fc44e6dbcc14c364901b86f55421 (diff) | |
download | ampache-d8ea07a04acc03160ac73f5db2a9249890e5fd13.tar.gz ampache-d8ea07a04acc03160ac73f5db2a9249890e5fd13.tar.bz2 ampache-d8ea07a04acc03160ac73f5db2a9249890e5fd13.zip |
sync from 3.5.x and fix display issue on playlist view
Diffstat (limited to 'lib/init.php')
-rw-r--r-- | lib/init.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/init.php b/lib/init.php index cb20678f..7b0361d1 100644 --- a/lib/init.php +++ b/lib/init.php @@ -296,4 +296,7 @@ if (Config::get('debug')) { error_reporting(E_ALL); } +// Merge GET then POST into REQUEST effectivly striping COOKIE without depending on +// a PHP setting change to take affect +$_REQUEST = array_merge($_GET,$_POST); ?> |