From 3eca572866e27608284ed1550eedf50f8d62af9a Mon Sep 17 00:00:00 2001 From: Thomas Keller Date: Thu, 3 Nov 2011 01:01:45 +0100 Subject: [PATCH] Spelling fix. --- src/IDF/Form/Upload.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/IDF/Form/Upload.php b/src/IDF/Form/Upload.php index 592286e..02c7019 100644 --- a/src/IDF/Form/Upload.php +++ b/src/IDF/Form/Upload.php @@ -106,7 +106,7 @@ class IDF_Form_Upload extends Pluf_Form $this->cleaned_data['label'.$i] = trim($this->cleaned_data['label'.$i]); if (strpos($this->cleaned_data['label'.$i], ':') !== false) { list($class, $name) = explode(':', $this->cleaned_data['label'.$i], 2); - list($class, $name) = array(mb_strtolower(trim($class)), + list($class, $name) = array(mb_strtolower(trim($class)), trim($name)); } else { $class = 'other'; @@ -116,7 +116,7 @@ class IDF_Form_Upload extends Pluf_Form else $count[$class] += 1; if (in_array($class, $onemax) and $count[$class] > 1) { if (!isset($this->errors['label'.$i])) $this->errors['label'.$i] = array(); - $this->errors['label'.$i][] = sprintf(__('You cannot provide more than label from the %s class to an issue.'), $class); + $this->errors['label'.$i][] = sprintf(__('You cannot provide more than label from the %s class to a download.'), $class); throw new Pluf_Form_Invalid(__('You provided an invalid label.')); } } @@ -129,7 +129,7 @@ class IDF_Form_Upload extends Pluf_Form */ function failed() { - if (!empty($this->cleaned_data['file']) + if (!empty($this->cleaned_data['file']) and file_exists(Pluf::f('upload_path').'/'.$this->project->shortname.'/files/'.$this->cleaned_data['file'])) { @unlink(Pluf::f('upload_path').'/'.$this->project->shortname.'/files/'.$this->cleaned_data['file']); }