diff options
author | Florian Pritz <bluewind@server-speed.net> | 2011-04-29 15:28:07 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@server-speed.net> | 2011-04-29 15:28:07 +0200 |
commit | 947e08cd69c47168d6589bfb2b9fcf5cb56d3a26 (patch) | |
tree | aa6054b6db6d52b95b7b3ac834756ccc1c939d74 | |
parent | 31a7f85f661c9744c658c81c74c4da9d8c748b7b (diff) |
add s -> asm alias
Signed-off-by: Florian Pritz <bluewind@server-speed.net>
-rw-r--r-- | application/models/file_mod.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/application/models/file_mod.php b/application/models/file_mod.php index 8291168b9..1739c8456 100644 --- a/application/models/file_mod.php +++ b/application/models/file_mod.php @@ -408,6 +408,7 @@ class File_mod extends CI_Model { $aliasarray = array( 'py' => 'python', 'sh' => 'bash', + 's' => 'asm', 'pl' => 'perl' ); if (array_key_exists($alias, $aliasarray)) return $aliasarray[$alias]; |