Deprecate passing Skin to LogEventsList constructor
This was deprecated since 9712def7 but never raised deprecation
warnings. No code is using the old parameters
Change-Id: I4e2dd5d3ab64743fde89698fb986a2883aa9eb57
This commit is contained in:
parent
4886a4707a
commit
265dd5d23c
1 changed files with 3 additions and 0 deletions
|
|
@ -74,6 +74,9 @@ class LogEventsList extends ContextSource {
|
|||
$this->setContext( $context );
|
||||
} else {
|
||||
// Old parameters, $context should be a Skin object
|
||||
wfDeprecatedMsg(
|
||||
'Passing Skin object to ' . __METHOD__ . ' has been deprecated.', '1.36'
|
||||
);
|
||||
$this->setContext( $context->getContext() );
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue