[Isocial-svn] SF.net SVN: isocial: [233] app/application_controller.php
Status: Pre-Alpha
Brought to you by:
aguidrevitch
From: <agu...@us...> - 2008-06-01 17:32:10
|
Revision: 233 http://isocial.svn.sourceforge.net/isocial/?rev=233&view=rev Author: aguidrevitch Date: 2008-06-01 10:32:12 -0700 (Sun, 01 Jun 2008) Log Message: ----------- improved shared file handling Modified Paths: -------------- app/application_controller.php Modified: app/application_controller.php =================================================================== --- app/application_controller.php 2008-06-01 17:05:00 UTC (rev 232) +++ app/application_controller.php 2008-06-01 17:32:12 UTC (rev 233) @@ -58,11 +58,13 @@ if (is_array($key_or_value)) { foreach ($key_or_value as $key => $value) { if ($stored = $this->_processSingleFile($key_or_value[$key])) { + $this->params[$fieldname][$key] = $stored; array_push($this->uploaded_files, $stored); } } } else { if ($stored = $this->_processSingleFile($uploaded[$fieldname])) { + $this->params[$fieldname] = $stored; array_push($this->uploaded_files, $stored); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |