Skip to content
Snippets Groups Projects
class.forms.php 66.3 KiB
Newer Older
  • Learn to ignore specific revisions
  •         // If no value was sent, assume an empty list
    
            elseif ($data && is_array($data) && !isset($data[$this->name]))
    
                return array();
    
            return parent::getValue();
        }
    }
    
    
    class FileUploadError extends Exception {}