root/trunk/system/config/upload.php

Revision 3326, 328 bytes (checked in by Shadowhand, 2 months ago)

Core cleanup:

  • Removed SYSPATH check from all files
  • Changed copyrights to 2007-2008 where they had not been updated
  • Started to add @example doc comments
  • Property svn:eol-style set to LF
  • Property copyright set to Copyright (c) 2007 Kohana Team
  • Property svn:keywords set to Id
Line 
1<?php
2/**
3 * @package  Core
4 *
5 * This path is relative to your index file. Absolute paths are also supported.
6 */
7$config['directory'] = DOCROOT.'upload';
8
9/**
10 * Enable or disable directory creation.
11 */
12$config['create_directories'] = FALSE;
13
14/**
15 * Remove spaces from uploaded filenames.
16 */
17$config['remove_spaces'] = TRUE;
Note: See TracBrowser for help on using the browser.