Index: trunk/phase3/includes/Defines.php |
— | — | @@ -238,12 +238,6 @@ |
239 | 239 | */ |
240 | 240 | define( 'RLH_FOR_UPDATE', 1 ); |
241 | 241 | |
242 | | -/** |
243 | | - * @deprecated This used to be a define in Title.php, but was moved to |
244 | | - * Title::GAID_FOR_UPDATE in 1.17. This will probably be removed in 1.18 |
245 | | - */ |
246 | | -define( 'GAID_FOR_UPDATE', 1 ); |
247 | | - |
248 | 242 | /**@{ |
249 | 243 | * Autopromote conditions (must be here and not in Autopromote.php, so that |
250 | 244 | * they're loaded for DefaultSettings.php before AutoLoader.php) |
Index: trunk/phase3/includes/Title.php |
— | — | @@ -14,6 +14,12 @@ |
15 | 15 | } |
16 | 16 | |
17 | 17 | /** |
| 18 | + * @deprecated This used to be a define, but was moved to |
| 19 | + * Title::GAID_FOR_UPDATE in 1.17. This will probably be removed in 1.18 |
| 20 | + */ |
| 21 | +define( 'GAID_FOR_UPDATE', Title::GAID_FOR_UPDATE ); |
| 22 | + |
| 23 | +/** |
18 | 24 | * Represents a title within MediaWiki. |
19 | 25 | * Optionally may contain an interwiki designation or namespace. |
20 | 26 | * @note This class can fetch various kinds of data from the database; |