Initial Kohana install
[speedfreak] / Server / system / config / view.php
diff --git a/Server/system/config/view.php b/Server/system/config/view.php
new file mode 100644 (file)
index 0000000..6bed22e
--- /dev/null
@@ -0,0 +1,17 @@
+<?php defined('SYSPATH') OR die('No direct access allowed.');
+/**
+ * @package  Core
+ *
+ * Allowed non-php view types. Most file extensions are supported.
+ */
+$config['allowed_filetypes'] = array
+(
+       'gif',
+       'jpg', 'jpeg',
+       'png',
+       'tif', 'tiff',
+       'swf',
+       'htm', 'html',
+       'css',
+       'js'
+);