diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-09-03 20:39:34 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-09-03 20:39:34 +0200 |
commit | dd71c144096163dfa921f20912843d1a5e2618dd (patch) | |
tree | c35dd962ed4160830014f3de36a97415d4779dce /system | |
parent | 596676c90ed3bb3dea6544a4ce00f47cbdd8c470 (diff) |
fix markdown highlighting
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to 'system')
-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 fd49c30c0..e2698fe68 100644 --- a/system/application/models/file_mod.php +++ b/system/application/models/file_mod.php @@ -340,7 +340,8 @@ class File_mod extends Model { 'application/x-ruby' => 'rb', 'application/x-shellscript' => 'sh', 'application/x-x509-ca-cert' => 'text', - 'application/mbox' => 'text' + 'application/mbox' => 'text', + 'application/x-genesis-rom' => 'text' ); if (array_key_exists($type, $typearray)) return $typearray[$type]; |