Index: trunk/phase3/includes/User.php |
— | — | @@ -2669,6 +2669,7 @@ |
2670 | 2670 | * which will give them a chance to modify this key based on their own |
2671 | 2671 | * settings. |
2672 | 2672 | * |
| 2673 | + * @deprecated use the ParserOptions object to get the relevant options |
2673 | 2674 | * @return \string Page rendering hash |
2674 | 2675 | */ |
2675 | 2676 | function getPageRenderingHash() { |
— | — | @@ -2676,6 +2677,7 @@ |
2677 | 2678 | if( $this->mHash ){ |
2678 | 2679 | return $this->mHash; |
2679 | 2680 | } |
| 2681 | + wfDeprecated( __METHOD__ ); |
2680 | 2682 | |
2681 | 2683 | // stubthreshold is only included below for completeness, |
2682 | 2684 | // since it disables the parser cache, its value will always |