From: Bryan Tong Minh Date: Wed, 14 Apr 2010 14:47:50 +0000 (+0000) Subject: Follow-up to r65027: Prefix all hidden fields with wp. This was not necessary since... X-Git-Tag: 1.31.0-rc.0~37114 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/pie.php?a=commitdiff_plain;h=6190e548470342324dffe88f65807720aa8a2343;p=lhc%2Fweb%2Fwiklou.git Follow-up to r65027: Prefix all hidden fields with wp. This was not necessary since HTMLForm.php r64866, which needs reverting or fixing. --- diff --git a/includes/specials/SpecialUpload.php b/includes/specials/SpecialUpload.php index d5946f303e..dc57af7f3e 100644 --- a/includes/specials/SpecialUpload.php +++ b/includes/specials/SpecialUpload.php @@ -958,14 +958,14 @@ class UploadForm extends HTMLForm { ); } - $descriptor['DestFileWarningAck'] = array( + $descriptor['wpDestFileWarningAck'] = array( 'type' => 'hidden', 'id' => 'wpDestFileWarningAck', 'default' => $this->mDestWarningAck ? '1' : '', ); if ( $this->mForReUpload ) { - $descriptor['ForReUpload'] = array( + $descriptor['wpForReUpload'] = array( 'type' => 'hidden', 'id' => 'wpForReUpload', 'default' => '1',