Small fix to BPM sanitization
This commit is contained in:
parent
0177e40083
commit
61a47aeb27
|
@ -19,9 +19,9 @@ class FileDataHelper {
|
||||||
}
|
}
|
||||||
if (array_key_exists("bpm", $data)) {
|
if (array_key_exists("bpm", $data)) {
|
||||||
//Some BPM tags are silly and include the word "BPM". Let's strip that...
|
//Some BPM tags are silly and include the word "BPM". Let's strip that...
|
||||||
$data["year"] = str_ireplace("BPM", "", $data["year"]);
|
$data["bpm"] = str_ireplace("BPM", "", $data["bpm"]);
|
||||||
// This will convert floats to ints too.
|
// This will convert floats to ints too.
|
||||||
$data["year"] = intval($data["year"]);
|
$data["bpm"] = intval($data["bpm"]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue