diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-10-05 19:36:24 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-10-05 19:36:24 +0200 |
commit | 8125f9f12b656d37a2258dad940bd0be7453584f (patch) | |
tree | 88e54c0db604619852a568583e1617b774981f0d | |
parent | 8a00125ce96b39de0454e81fb8a4892a59317d48 (diff) |
fix .as filetype
Signed-off-by: Florian Pritz <bluewind@xssn.at>
-rw-r--r-- | system/application/models/file_mod.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/application/models/file_mod.php b/system/application/models/file_mod.php index b9b534065..91cf1d8e0 100644 --- a/system/application/models/file_mod.php +++ b/system/application/models/file_mod.php @@ -351,7 +351,8 @@ class File_mod extends Model { 'application/x-shellscript' => 'bash', 'application/x-x509-ca-cert' => 'text', 'application/mbox' => 'email', - 'application/x-genesis-rom' => 'text' + 'application/x-genesis-rom' => 'text', + 'application/x-applix-spreadsheet' => 'actionscript' ); if (array_key_exists($type, $typearray)) return $typearray[$type]; |