diff options
author | addshore <addshorewiki@gmail.com> | 2018-01-26 16:57:13 -0800 |
---|---|---|
committer | addshore <addshorewiki@gmail.com> | 2018-01-26 16:57:13 -0800 |
commit | b376e4bbdad708f5beaa298a65a0628b5d5a7312 (patch) | |
tree | 731017815da9aae8257255bb2626048f29a080d9 /includes/edit | |
parent | c9d303d39edcd78827a6ff2336cc84ba043444fa (diff) | |
download | mediawikicore-b376e4bbdad708f5beaa298a65a0628b5d5a7312.tar.gz mediawikicore-b376e4bbdad708f5beaa298a65a0628b5d5a7312.zip |
Remove deprecated PreparedEdit properties
The following properties of PreparedEdit were deprecated in
1.21 and have been removed:
* PreparedEdit->newText
* PreparedEdit->oldText
* PreparedEdit->pst
These have no use left in core or extensions.
Change-Id: Ic48c817aaf3fbb6d5f33678fcb4843180f0bc9fb
Diffstat (limited to 'includes/edit')
-rw-r--r-- | includes/edit/PreparedEdit.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/includes/edit/PreparedEdit.php b/includes/edit/PreparedEdit.php index 62624f4d9180..910d221a7c28 100644 --- a/includes/edit/PreparedEdit.php +++ b/includes/edit/PreparedEdit.php @@ -87,27 +87,4 @@ class PreparedEdit { */ public $oldContent; - /** - * $newContent in text form - * - * @var string - * @deprecated since 1.21 - */ - public $newText; - - /** - * $oldContent in text from - * - * @var string - * @deprecated since 1.21 - */ - public $oldText; - - /** - * $pstContent in text form - * - * @var string - * @deprecated since 1.21 - */ - public $pst; } |