Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F585033
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/RELEASE-NOTES-1.44 b/RELEASE-NOTES-1.44
index 9cce48a093b..f11a858e52c 100644
--- a/RELEASE-NOTES-1.44
+++ b/RELEASE-NOTES-1.44
@@ -387,6 +387,7 @@ because of Phabricator reports.
listExplicitlyDefinedTags(), listSoftwareActivatedTags(),
listSoftwareDefinedTags(), makeTagSummarySubquery(), modifyDisplayQuery(),
purgeTagCacheAll(), tagUsageStatistics(), and updateTags().
+* EditPage::$textbox2 has been deprecated (once again).
* (T166010) All PHP code in MediaWiki is slowly being moved to be in a class
namespace as appropriate, so that we can use PSR-4 auto-loading, which will
speed up general code loading of MediaWiki. The old global namespace class
diff --git a/includes/editpage/EditPage.php b/includes/editpage/EditPage.php
index 8d80bc462fd..bc859000ecd 100644
--- a/includes/editpage/EditPage.php
+++ b/includes/editpage/EditPage.php
@@ -327,8 +327,11 @@ class EditPage implements IEditObject {
*/
public $textbox1 = '';
- /** @var string */
- public $textbox2 = '';
+ /**
+ * @deprecated since 1.44
+ * @var string
+ */
+ private $textbox2 = '';
/** @var string */
public $summary = '';
@@ -548,8 +551,7 @@ class EditPage implements IEditObject {
->getBlockErrorFormatter( $this->context );
$this->authManager = $services->getAuthManager();
- // XXX: Restore this deprecation as soon as TwoColConflict is fixed (T305028)
- // $this->deprecatePublicProperty( 'textbox2', '1.38', __CLASS__ );
+ $this->deprecatePublicProperty( 'textbox2', '1.44', __CLASS__ );
}
/**
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Sat, Jul 5, 5:31 AM (8 h, 1 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
227483
Default Alt Text
(1 KB)
Attached To
Mode
rMW mediawiki
Attached
Detach File
Event Timeline
Log In to Comment