Index: trunk/phase3/includes/specials/SpecialProtectedtitles.php |
— | — | @@ -208,6 +208,9 @@ |
209 | 209 | return ''; |
210 | 210 | } |
211 | 211 | |
| 212 | + /** |
| 213 | + * @return Title |
| 214 | + */ |
212 | 215 | function getTitle() { |
213 | 216 | return SpecialPage::getTitleFor( 'Protectedtitles' ); |
214 | 217 | } |
— | — | @@ -216,6 +219,9 @@ |
217 | 220 | return $this->mForm->formatRow( $row ); |
218 | 221 | } |
219 | 222 | |
| 223 | + /** |
| 224 | + * @return array |
| 225 | + */ |
220 | 226 | function getQueryInfo() { |
221 | 227 | $conds = $this->mConds; |
222 | 228 | $conds[] = 'pt_expiry>' . $this->mDb->addQuotes( $this->mDb->timestamp() ); |
Index: trunk/extensions/Translate/scripts/cli.inc |
— | — | @@ -69,6 +69,8 @@ |
70 | 70 | /** |
71 | 71 | * Output a warning message to command line (if available). |
72 | 72 | * @see STDOUT |
| 73 | + * @param $message string |
| 74 | + * @param $channel mixed|string |
73 | 75 | */ |
74 | 76 | function STDERR( $message, $channel = null ) { |
75 | 77 | STDOUT( $message, $channel, true ); |
Index: trunk/extensions/Translate/Groups.php |
— | — | @@ -106,6 +106,7 @@ |
107 | 107 | /** |
108 | 108 | * Returns message tags. If type is given, only messages keys with that |
109 | 109 | * tag is returnted. Otherwise an array[tag => keys] is returnted. |
| 110 | + * @param $type string |
110 | 111 | * @return array |
111 | 112 | */ |
112 | 113 | public function getTags( $type = null ); |
Property changes on: trunk/extensions/VisualEditor/modules/es/images/bullet.png |
___________________________________________________________________ |
Modified: svn:mime-type |
113 | 114 | - application/octet-stream |
114 | 115 | + image/png |
Index: trunk/extensions/Deployment/Deployment.php |
— | — | @@ -1,6 +1,6 @@ |
2 | 2 | <?php |
3 | 3 | /** |
4 | | - * Initialization file for the Deployment extension. |
| 4 | + * Deployment extension. |
5 | 5 | * Extension documentation: http://www.mediawiki.org/wiki/Extension:Deployment |
6 | 6 | * |
7 | 7 | * @file Deployment.php |