diff options
author | Malf Furious <m@lfurio.us> | 2016-05-01 01:42:30 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-05-01 01:42:30 -0400 |
commit | d431ef2954455ad38454d27f5be866061794b4bf (patch) | |
tree | ceb03f3c9cf27e5c388cbc923476d9df5b49c10b /app/controller | |
parent | 93fa361ba63c8afa2370c43b7918c9dd513a4586 (diff) | |
parent | 395f7ed73b0b868027285512040fbfe3d0adf347 (diff) | |
download | scrott-d431ef2954455ad38454d27f5be866061794b4bf.tar.gz scrott-d431ef2954455ad38454d27f5be866061794b4bf.zip |
Merge branch 'feature/user-img-mgmt' into dev
Diffstat (limited to 'app/controller')
-rw-r--r-- | app/controller/dashboard.control.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controller/dashboard.control.php b/app/controller/dashboard.control.php index 53ca160..aa1c0bd 100644 --- a/app/controller/dashboard.control.php +++ b/app/controller/dashboard.control.php @@ -14,7 +14,7 @@ class Dashboard extends Controller function handle($argv) { $mod = new DashboardModel(); - $mod->common_handleFormSubmissions($_REQUEST['input']); + $mod->common_handleFormSubmissions($_REQUEST['input'], $_FILES['attachment']); $mod->common_deflt(); $this->action_default($mod); } |