From: Jack D. Pond Date: Wed, 27 Jan 2010 19:08:31 +0000 (+0000) Subject: $mDesiredDestName property changed from protected to public. Used in extensions... X-Git-Tag: 1.31.0-rc.0~38077 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=98b637402b1918a01ebc216e82f9d67d086c12ce;p=lhc%2Fweb%2Fwiklou.git $mDesiredDestName property changed from protected to public. Used in extensions to check/validate/process user destination names in uploads. --- diff --git a/includes/specials/SpecialUpload.php b/includes/specials/SpecialUpload.php index 69cf96ee33..f6ba998e67 100644 --- a/includes/specials/SpecialUpload.php +++ b/includes/specials/SpecialUpload.php @@ -30,10 +30,10 @@ class SpecialUpload extends SpecialPage { protected $mUploadClicked; /** User input variables from the "description" section **/ - protected $mDesiredDestName; // The requested target file name + public $mDesiredDestName; // The requested target file name protected $mComment; protected $mLicense; - + /** User input variables from the root section **/ protected $mIgnoreWarning; protected $mWatchThis;