1
0
Fork 0
mirror of https://github.com/Yetangitu/ampache synced 2025-10-05 02:39:47 +02:00

fixed album art if php-gd in not installed

This commit is contained in:
Karl 'vollmerk' Vollmer 2006-01-13 22:38:09 +00:00
parent 5d6e06fa17
commit 134e6a164e
3 changed files with 7 additions and 2 deletions

View file

@ -33,7 +33,7 @@
*/
/* Don't do anything just tell me what you would do */
$test_mode = true;
/* $test_mode = true; */
/* m(__)m */
$alphabet_prefix = true;
@ -104,6 +104,7 @@ function sort_find_filename($song,$rename_pattern) {
/* Start replacing stuff */
$replace_array = array('%a','%A','%t','%T','%y','%g');
$content_array = array($artist,$album,$title,$track,$year,$genre);
$rename_pattern = str_replace($replace_array,$content_array,$rename_pattern);