Merge branch 'cc-5709-airtime-analyzer' of github.com:sourcefabric/Airtime into cc-5709-airtime-analyzer

This commit is contained in:
Albert Santoni 2015-02-20 17:26:53 -05:00
commit 6858316dfc
1 changed files with 2 additions and 2 deletions

View File

@ -19,9 +19,9 @@ class FileDataHelper {
}
if (array_key_exists("bpm", $data)) {
//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.
$data["year"] = intval($data["year"]);
$data["bpm"] = intval($data["bpm"]);
}
}