Index: trunk/phase3/includes/Article.php |
— | — | @@ -1093,19 +1093,6 @@ |
1094 | 1094 | } |
1095 | 1095 | |
1096 | 1096 | /** |
1097 | | - * Get the robot policy to be used for the current action=view request. |
1098 | | - * @return String the policy that should be set |
1099 | | - * @deprecated use getRobotPolicy() instead, which returns an associative |
1100 | | - * array |
1101 | | - */ |
1102 | | - public function getRobotPolicyForView() { |
1103 | | - wfDeprecated( __METHOD__ ); |
1104 | | - $policy = $this->getRobotPolicy( 'view' ); |
1105 | | - |
1106 | | - return $policy['index'] . ',' . $policy['follow']; |
1107 | | - } |
1108 | | - |
1109 | | - /** |
1110 | 1097 | * Get the robot policy to be used for the current view |
1111 | 1098 | * @param $action String the action= GET parameter |
1112 | 1099 | * @return Array the policy that should be set |