diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2012-03-31 20:37:38 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-03-31 20:44:41 -0400 |
commit | 425ecbbb3a6bf2142de5d3f81cb3add270f12b51 (patch) | |
tree | 4d512b50a10ddf67407ecc0ff4dabe0f3f52cf0f /docs/CHANGELOG | |
parent | 65ad781927b3fa8a0ee6931900db8ee352698706 (diff) | |
download | ampache-425ecbbb3a6bf2142de5d3f81cb3add270f12b51.tar.gz ampache-425ecbbb3a6bf2142de5d3f81cb3add270f12b51.tar.bz2 ampache-425ecbbb3a6bf2142de5d3f81cb3add270f12b51.zip |
Don't run filename patterns through preg_quote twice
This would result in extra slashes, e.g.
'/\/([0-9]+?)\s\\\-\s(.+?)\..+$/' instead of
'/\/([0-9]+?)\s\-\s(.+?)\..+$/'
There are some unrelated cosmetic changes as well.
Diffstat (limited to 'docs/CHANGELOG')
-rwxr-xr-x | docs/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index eacc0415..036d72c4 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -4,6 +4,8 @@ -------------------------------------------------------------------------- v.3.6-Alpha2 + - Fixed an issue with filename pattern matching when patterns contained + characters that are part of regex syntax (such as -) - Fixed display of logic operator in rules (reported by Twister) - Fixed newsearch issue preventing use of more than 9 rules (reported by Twister) |