~ubuntu-branches/ubuntu/precise/jetty/precise-updates

« back to all changes in this revision

Viewing changes to modules/util/src/main/java/org/mortbay/servlet/MultiPartFilter.java

  • Committer: Bazaar Package Importer
  • Author(s): Niels Thykier
  • Date: 2009-10-23 20:45:43 UTC
  • mfrom: (1.1.6 upstream) (2.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20091023204543-3c4pyw0dhqq4qloh
Tags: 6.1.21-1
* New upstream release.
* Stopped using /tmp/jetty-temp in /etc/init.d/jetty for security
  reasons.
  - JVM_TMP is now /var/cache/jetty/tmp
  - JETTY_TMP is now /var/cache/jetty/data
* The postrm script no longer deletes files in /tmp/jetty-temp.
* Removed Philipp Meier from Uploaders (last upload was 2006-06-07).
  Thanks for your work on this package.
* Corrected javadoc symlink in binary package jetty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
                {
175
175
                    continue;
176
176
                }
177
 
                if(name==null||name.length()==0)
 
177
                
 
178
                //It is valid for reset and submit buttons to have an empty name.
 
179
                //If no name is supplied, the browser skips sending the info for that field.
 
180
                //However, if you supply the empty string as the name, the browser sends the
 
181
                //field, with name as the empty string. So, only continue this loop if we
 
182
                //have not yet seen a name field.
 
183
                if(name==null)
178
184
                {
179
185
                    continue;
180
186
                }