Last modified: 2008-03-20 21:48:39 UTC
The recent changes in SpecialUpload.php in revision 32077 have made the wpDestFileWarningAck hidden input disappear. I don't know if that isn't needed anymore, but in any case this generates a Javascript error in /skins-1.5/common/upload.js, line 102. And while we're at it, line 99 of upload.js is missing a ';'. Instead of if ( warning == '' || warning == ' ' ) { it should read if ( warning == '' || warning == ' ' ) {
ID readded with r32217. I leave this bug open because I am unsure if ' ' is an typo or intent.
It's an error. The server (see function ajaxGetExistsWarning in SpecialUpload.php) returns a valid character entity ' ' if there is no warning. So the Javascript should test against that.
r32258