diff --git a/airtime_mvc/application/models/StoredFile.php b/airtime_mvc/application/models/StoredFile.php
index e7534bc8e..a945324c1 100644
--- a/airtime_mvc/application/models/StoredFile.php
+++ b/airtime_mvc/application/models/StoredFile.php
@@ -719,13 +719,16 @@ class Application_Model_StoredFile
//datatable stuff really needs to be pulled out and generalized within the project
//access to zend view methods to access url helpers is needed.
+ Logging::log($type);
if ($type == "au") {
- //TODO:
- Logging::log("row id: ".$row['id']);
$row['audioFile'] = $row['id'].".".pathinfo($row['filepath'], PATHINFO_EXTENSION);
$row['image'] = '
';
- } else {
+ } else if ($type == "pl") {
$row['image'] = '
';
+ } else if ($type == "st") {
+ $row['image'] = '
';
+ } else if ($type == "bl") {
+ $row['image'] = '
';
}
}