Index: trunk/phase3/includes/api/ApiQueryBase.php |
— | — | @@ -74,7 +74,15 @@ |
75 | 75 | return $this->mQueryModule->getPageSet(); |
76 | 76 | } |
77 | 77 | |
| 78 | + /** |
| 79 | + * This is a very simplistic utility function |
| 80 | + * to convert a title string to a db key. |
| 81 | + * It will replace all ' ' with '_', and make first letter uppercase |
| 82 | + */ |
78 | 83 | public static function titleToKey($title) { |
| 84 | + global $wgContLang, $wgCapitalLinks; |
| 85 | + if ($wgCapitalLinks) |
| 86 | + $title = $wgContLang->ucfirst( $title ); |
79 | 87 | return str_replace(' ', '_', $title); |
80 | 88 | } |
81 | 89 | |