Fixed SQL binding bug
[speedfreak] / Server / application / config / upload.php
1 <?php defined('SYSPATH') OR die('No direct access allowed.');
2 /**
3  * @package  Core
4  *
5  * This path is relative to your index file. Absolute paths are also supported.
6  */
7 $config['directory'] = DOCROOT.'static/uploads/avatars';
8
9 /**
10  * Enable or disable directory creation.
11  */
12 $config['create_directories'] = TRUE;
13
14 /**
15  * Remove spaces from uploaded filenames.
16  */
17 $config['remove_spaces'] = TRUE;