diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-06-25 04:19:12 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-06-25 04:19:12 +0000 |
commit | c90920cfa637742aa2e10ccada6d70178131de3e (patch) | |
tree | 3b4b93df8194b5547e9ce9db1d6c627b78fcfb40 /lib | |
parent | c2ada6f8be09032a28fed5ce169f86e6ea951156 (diff) | |
download | ampache-c90920cfa637742aa2e10ccada6d70178131de3e.tar.gz ampache-c90920cfa637742aa2e10ccada6d70178131de3e.tar.bz2 ampache-c90920cfa637742aa2e10ccada6d70178131de3e.zip |
fix typo (Thx Paleo)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/class/catalog.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/catalog.class.php b/lib/class/catalog.class.php index f1f06f19..9111be68 100644 --- a/lib/class/catalog.class.php +++ b/lib/class/catalog.class.php @@ -1999,7 +1999,7 @@ class Catalog extends database_object { preg_match($prefix_pattern,$artist,$matches); if (count($matches)) { - $artist = trimm($matches[2]); + $artist = trim($matches[2]); $prefix = trim($matches[1]); } |