summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/libraries/Upload.php4
-rw-r--r--user_guide/changelog.html5
2 files changed, 8 insertions, 1 deletions
diff --git a/system/libraries/Upload.php b/system/libraries/Upload.php
index 1225ee36b..23e52e403 100644
--- a/system/libraries/Upload.php
+++ b/system/libraries/Upload.php
@@ -821,9 +821,11 @@ class CI_Upload {
*/
function mimes_types($mime)
{
+ global $mimes;
+
if (count($this->mimes) == 0)
{
- if (@include(APPPATH.'config/mimes'.EXT))
+ if (@require_once(APPPATH.'config/mimes'.EXT))
{
$this->mimes = $mimes;
unset($mimes);
diff --git a/user_guide/changelog.html b/user_guide/changelog.html
index 8217cbff4..28eb39d3b 100644
--- a/user_guide/changelog.html
+++ b/user_guide/changelog.html
@@ -66,6 +66,11 @@ SVN Revision: not currently released</p>
<li>Added ability to set additional database config values in <a href="database/connecting.html">DSN connections</a> via the query string.</li>
</ul>
</li>
+ <li>Libraries
+ <ul>
+ <li>Set the mime type check in the <a href="libraries/file_uploading.html">Upload class</a> to reference the global mimes variable.</li>
+ </ul>
+ </li>
</ul>