From: daniel Date: Fri, 3 Aug 2018 11:21:41 +0000 (+0200) Subject: Disable warning about direct text table access for now X-Git-Tag: 1.34.0-rc.0~4333^2 X-Git-Url: http://git.cyclocoop.org/?a=commitdiff_plain;h=f7ca65da889d5b2b798d82fcf175ab8960a76139;p=lhc%2Fweb%2Fwiklou.git Disable warning about direct text table access for now Bug: T201164 Change-Id: I2736ba9e2d35133749dd2d40024af4dd76ded334 --- diff --git a/includes/Storage/RevisionStore.php b/includes/Storage/RevisionStore.php index d090d8be52..81b675eff3 100644 --- a/includes/Storage/RevisionStore.php +++ b/includes/Storage/RevisionStore.php @@ -2149,7 +2149,9 @@ class RevisionStore // NOTE: even when this class is set to not read from the old schema, callers // should still be able to join against the text table, as long as we are still // writing the old schema for compatibility. - wfDeprecated( __METHOD__ . ' with `text` option', '1.32' ); + // TODO: This should trigger a deprecation warning eventually (T200918), but not + // before all known usages are removed (see T198341 and T201164). + // wfDeprecated( __METHOD__ . ' with `text` option', '1.32' ); } $ret['tables'][] = 'text';