diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-06-16 01:00:04 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-06-16 01:00:04 -0400 |
commit | 4118b42f4777b2a39a85640689103e43641d63a2 (patch) | |
tree | 71d3cd2eb4cd1fec518cf12763a87589baa5062b /lib | |
parent | 05009329cf9e5ad8601b01844716d6d5ed244daa (diff) | |
download | ampache-4118b42f4777b2a39a85640689103e43641d63a2.tar.gz ampache-4118b42f4777b2a39a85640689103e43641d63a2.tar.bz2 ampache-4118b42f4777b2a39a85640689103e43641d63a2.zip |
Drop sort in Query::_serialize()
On second thought, preserving the order might be important.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/class/query.class.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/class/query.class.php b/lib/class/query.class.php index 857adf61..c55557a8 100644 --- a/lib/class/query.class.php +++ b/lib/class/query.class.php @@ -233,7 +233,6 @@ class Query { */ private static function _serialize($data) { if (count($data) > 1000) { - sort($data); $last = -17; $in_range = false; $idx = -1; |