Index: trunk/phase3/maintenance/parse.php |
— | — | @@ -88,7 +88,7 @@ |
89 | 89 | } |
90 | 90 | |
91 | 91 | /** |
92 | | - * @param string $text Wikitext to parse |
| 92 | + * @param string $wikitext Wikitext to parse |
93 | 93 | * @return ParserOutput |
94 | 94 | */ |
95 | 95 | protected function parse( $wikitext ) { |
Index: trunk/phase3/maintenance/nextJobDB.php |
— | — | @@ -106,7 +106,6 @@ |
107 | 107 | |
108 | 108 | /** |
109 | 109 | * Get all databases that have a pending job |
110 | | - * @param $type String Job type |
111 | 110 | * @return array |
112 | 111 | */ |
113 | 112 | private function getPendingDbs() { |
Index: trunk/phase3/tests/phpunit/includes/TitleTest.php |
— | — | @@ -44,7 +44,7 @@ |
45 | 45 | * @group Database |
46 | 46 | * @param string $source |
47 | 47 | * @param string $target |
48 | | - * @param array|string|true $requiredErrors |
| 48 | + * @param array|string|true $expected Required error |
49 | 49 | * @dataProvider dataTestIsValidMoveOperation |
50 | 50 | */ |
51 | 51 | function testIsValidMoveOperation( $source, $target, $expected ) { |
Index: trunk/phase3/tests/phpunit/includes/specials/SpecialSearchTest.php |
— | — | @@ -18,10 +18,12 @@ |
19 | 19 | * @dataProvider provideSearchOptionsTests |
20 | 20 | * @param $requested Array Request parameters. For example array( 'ns5' => true, 'ns6' => true). NULL to use default options. |
21 | 21 | * @param $userOptions Array User options to test with. For example array('searchNs5' => 1 );. NULL to use default options. |
| 22 | + * @param $expectedProfile An expected search profile name |
| 23 | + * @param $expectedNs Array Expected namespaces |
22 | 24 | */ |
23 | 25 | function testProfileAndNamespaceLoading( |
24 | 26 | $requested, $userOptions, $expectedProfile, $expectedNS, |
25 | | - $message = 'Profile name andnamespaces mismatches!' |
| 27 | + $message = 'Profile name and namespaces mismatches!' |
26 | 28 | ) { |
27 | 29 | $context = new RequestContext; |
28 | 30 | $context->setUser( |
Index: trunk/phase3/tests/phpunit/includes/api/ApiTestCase.php |
— | — | @@ -70,6 +70,7 @@ |
71 | 71 | * request, without actually requesting a "real" edit token |
72 | 72 | * @param $params: key-value API params |
73 | 73 | * @param $session: session array |
| 74 | + * @param $user String|null A User object for the context |
74 | 75 | */ |
75 | 76 | protected function doApiRequestWithToken( $params, $session, $user = null ) { |
76 | 77 | if ( $session['wsToken'] ) { |
Index: trunk/phase3/tests/phpunit/languages/LanguageTrTest.php |
— | — | @@ -18,7 +18,10 @@ |
19 | 19 | |
20 | 20 | /** |
21 | 21 | * See @bug 28040 |
22 | | - * Credits to #wikipedia-tr users berm, []LuCkY[] and Emperyan |
| 22 | + * Credits to irc://irc.freenode.net/wikipedia-tr users: |
| 23 | + * - berm |
| 24 | + * - []LuCkY[] |
| 25 | + * - Emperyan |
23 | 26 | * @see http://en.wikipedia.org/wiki/Dotted_and_dotless_I |
24 | 27 | * @dataProvider provideDottedAndDotlessI |
25 | 28 | */ |
Index: trunk/phase3/includes/search/SearchMySQL.php |
— | — | @@ -45,7 +45,7 @@ |
46 | 46 | * become part of a WHERE clause |
47 | 47 | * |
48 | 48 | * @param $filteredText string |
49 | | - * @param $fullText string |
| 49 | + * @param $fulltext string |
50 | 50 | * |
51 | 51 | * @return string |
52 | 52 | */ |
— | — | @@ -290,6 +290,7 @@ |
291 | 291 | /** |
292 | 292 | * Get the base part of the search query. |
293 | 293 | * |
| 294 | + * @param &$query Search query array |
294 | 295 | * @param $filteredTerm String |
295 | 296 | * @param $fulltext Boolean |
296 | 297 | * @since 1.18 (changed) |
Index: trunk/phase3/includes/parser/CoreParserFunctions.php |
— | — | @@ -562,7 +562,11 @@ |
563 | 563 | * to the link cache, so the local cache here should be unnecessary, but |
564 | 564 | * in fact calling getLength() repeatedly for the same $page does seem to |
565 | 565 | * run one query for each call? |
| 566 | + * @todo Document parameters |
| 567 | + * |
566 | 568 | * @param $parser Parser |
| 569 | + * @param $page String TODO DOCUMENT (Default: empty string) |
| 570 | + * @param $raw TODO DOCUMENT (Default: null) |
567 | 571 | */ |
568 | 572 | static function pagesize( $parser, $page = '', $raw = null ) { |
569 | 573 | static $cache = array(); |
Index: trunk/phase3/includes/parser/ParserOutput.php |
— | — | @@ -285,7 +285,7 @@ |
286 | 286 | * Register a file dependency for this output |
287 | 287 | * @param $name string Title dbKey |
288 | 288 | * @param $timestamp string MW timestamp of file creation (or false if non-existing) |
289 | | - * @param $sha string base 36 SHA-1 of file (or false if non-existing) |
| 289 | + * @param $sha1 string base 36 SHA-1 of file (or false if non-existing) |
290 | 290 | * @return void |
291 | 291 | */ |
292 | 292 | function addImage( $name, $timestamp = null, $sha1 = null ) { |
Index: trunk/phase3/includes/parser/ParserCache.php |
— | — | @@ -100,6 +100,8 @@ |
101 | 101 | * It would be preferable to have this code in get() |
102 | 102 | * instead of having Article looking in our internals. |
103 | 103 | * |
| 104 | + * @todo Document parameter $useOutdated |
| 105 | + * |
104 | 106 | * @param $article Article |
105 | 107 | * @param $popts ParserOptions |
106 | 108 | */ |
Index: trunk/phase3/includes/Linker.php |
— | — | @@ -241,6 +241,8 @@ |
242 | 242 | * Returns the Url used to link to a Title |
243 | 243 | * |
244 | 244 | * @param $target Title |
| 245 | + * @param $query Array: query parameters |
| 246 | + * @param $options Array |
245 | 247 | */ |
246 | 248 | private static function linkUrl( $target, $query, $options ) { |
247 | 249 | wfProfileIn( __METHOD__ ); |
Index: trunk/phase3/includes/db/DatabaseIbm_db2.php |
— | — | @@ -893,7 +893,7 @@ |
894 | 894 | * Handle reserved keyword replacement in table names |
895 | 895 | * |
896 | 896 | * @param $name Object |
897 | | - * @param $name Boolean |
| 897 | + * @param $format String Ignored parameter Default 'quoted'Boolean |
898 | 898 | * @return String |
899 | 899 | */ |
900 | 900 | public function tableName( $name, $format = 'quoted' ) { |
Index: trunk/phase3/includes/db/Database.php |
— | — | @@ -1432,7 +1432,7 @@ |
1433 | 1433 | * |
1434 | 1434 | * @param $table string|array Table name |
1435 | 1435 | * @param $vars string|array Field names |
1436 | | - * @param $conds|array Conditions |
| 1436 | + * @param $conds array Conditions |
1437 | 1437 | * @param $fname string Caller function name |
1438 | 1438 | * @param $options string|array Query options |
1439 | 1439 | * @param $join_conds array|string Join conditions |
Index: trunk/phase3/includes/conf/Conf.php |
— | — | @@ -25,7 +25,6 @@ |
26 | 26 | * |
27 | 27 | * @file |
28 | 28 | * @defgroup Config Config |
29 | | - * @ingroup Config |
30 | 29 | */ |
31 | 30 | abstract class Conf { |
32 | 31 | /** |
Index: trunk/phase3/includes/UserMailer.php |
— | — | @@ -109,8 +109,8 @@ |
110 | 110 | /** |
111 | 111 | * Creates a single string from an associative array |
112 | 112 | * |
113 | | - * @param $header Associative Array: keys are header field names, |
114 | | - * values are ... values. |
| 113 | + * @param $headers Associative Array: keys are header field names, |
| 114 | + * values are ... values. |
115 | 115 | * @param $endl String: The end of line character. Defaults to "\n" |
116 | 116 | * @return String |
117 | 117 | */ |
Index: trunk/phase3/includes/filerepo/LocalRepo.php |
— | — | @@ -208,10 +208,10 @@ |
209 | 209 | } |
210 | 210 | |
211 | 211 | /** |
212 | | - * Get an array or iterator of file objects for files that have a given |
| 212 | + * Get an array or iterator of file objects for files that have a given |
213 | 213 | * SHA-1 content hash. |
214 | 214 | * |
215 | | - * @param string |
| 215 | + * @param $hash String a sha1 hash to look for |
216 | 216 | * @return Array |
217 | 217 | */ |
218 | 218 | function findBySha1( $hash ) { |
Index: trunk/phase3/includes/CategoryViewer.php |
— | — | @@ -12,7 +12,7 @@ |
13 | 13 | $imgsNoGallery; |
14 | 14 | |
15 | 15 | /** |
16 | | - * @var |
| 16 | + * @var Array |
17 | 17 | */ |
18 | 18 | var $nextPage; |
19 | 19 | |
Index: trunk/phase3/includes/logging/LogEventsList.php |
— | — | @@ -230,7 +230,6 @@ |
231 | 231 | |
232 | 232 | /** |
233 | 233 | * Returns log page selector. |
234 | | - * @param $default string The default selection |
235 | 234 | * @return XmlSelect |
236 | 235 | * @since 1.19 |
237 | 236 | */ |
Index: trunk/phase3/includes/Html.php |
— | — | @@ -376,20 +376,22 @@ |
377 | 377 | * and converted to a space-separated string. In addition to a numerical |
378 | 378 | * array, the attribute value may also be an associative array. See the |
379 | 379 | * example below for how that works. |
380 | | - * @example Numerical array |
381 | | - * <code> |
| 380 | + * |
| 381 | + * @par Numerical array |
| 382 | + * @code |
382 | 383 | * Html::element( 'em', array( |
383 | 384 | * 'class' => array( 'foo', 'bar' ) |
384 | 385 | * ) ); |
385 | 386 | * // gives '<em class="foo bar"></em>' |
386 | | - * </code> |
387 | | - * @example Associative array |
388 | | - * <code> |
| 387 | + * @endcode |
| 388 | + * |
| 389 | + * @par Associative array |
| 390 | + * @code |
389 | 391 | * Html::element( 'em', array( |
390 | 392 | * 'class' => array( 'foo', 'bar', 'foo' => false, 'quux' => true ) |
391 | 393 | * ) ); |
392 | 394 | * // gives '<em class="bar quux"></em>' |
393 | | - * </code> |
| 395 | + * @endcode |
394 | 396 | * |
395 | 397 | * @param $attribs array Associative array of attributes, e.g., array( |
396 | 398 | * 'href' => 'http://www.mediawiki.org/' ). Values will be HTML-escaped. |
Index: trunk/phase3/includes/installer/PhpBugTests.php |
— | — | @@ -18,8 +18,7 @@ |
19 | 19 | * http://www.gnu.org/copyleft/gpl.html |
20 | 20 | * |
21 | 21 | * @file |
22 | | - * @defgroup PHPBugTests |
23 | | - * @ingroup PHPBugTests |
| 22 | + * @defgroup PHPBugTests PHP known bugs tests |
24 | 23 | */ |
25 | 24 | |
26 | 25 | /** |
Index: trunk/phase3/includes/actions/CreditsAction.php |
— | — | @@ -219,8 +219,7 @@ |
220 | 220 | |
221 | 221 | /** |
222 | 222 | * Get a link to action=credits of $article page |
223 | | - * @param $article Article object |
224 | | - * @return String: html |
| 223 | + * @return String: HTML link |
225 | 224 | */ |
226 | 225 | protected function othersLink() { |
227 | 226 | return Linker::linkKnown( |
Index: trunk/phase3/includes/actions/WatchAction.php |
— | — | @@ -106,7 +106,7 @@ |
107 | 107 | * Get token to watch (or unwatch) a page for a user |
108 | 108 | * |
109 | 109 | * @param Title $title Title object of page to watch |
110 | | - * @param User $title User for whom the action is going to be performed |
| 110 | + * @param User $user User for whom the action is going to be performed |
111 | 111 | * @param string $action Optionally override the action to 'unwatch' |
112 | 112 | * @return string Token |
113 | 113 | * @since 1.18 |
— | — | @@ -126,7 +126,7 @@ |
127 | 127 | * Get token to unwatch (or watch) a page for a user |
128 | 128 | * |
129 | 129 | * @param Title $title Title object of page to unwatch |
130 | | - * @param User $title User for whom the action is going to be performed |
| 130 | + * @param User $user User for whom the action is going to be performed |
131 | 131 | * @param string $action Optionally override the action to 'watch' |
132 | 132 | * @return string Token |
133 | 133 | * @since 1.18 |
Index: trunk/phase3/includes/media/FormatMetadata.php |
— | — | @@ -1183,7 +1183,7 @@ |
1184 | 1184 | * Format a coordinate value, convert numbers from floating point |
1185 | 1185 | * into degree minute second representation. |
1186 | 1186 | * |
1187 | | - * @param $coords Array: degrees, minutes and seconds |
| 1187 | + * @param $coord Array: degrees, minutes and seconds |
1188 | 1188 | * @param $type String: latitude or longitude (for if its a NWS or E) |
1189 | 1189 | * @return mixed A floating point number or whatever we were fed |
1190 | 1190 | */ |
Index: trunk/phase3/includes/media/Exif.php |
— | — | @@ -101,6 +101,7 @@ |
102 | 102 | * Constructor |
103 | 103 | * |
104 | 104 | * @param $file String: filename. |
| 105 | + * @param $byteOrder String Type of byte ordering either 'BE' (Big Endian) or 'LE' (Little Endian). Default ''. |
105 | 106 | * @todo FIXME: The following are broke: |
106 | 107 | * SubjectArea. Need to test the more obscure tags. |
107 | 108 | * |
Index: trunk/phase3/includes/media/XMP.php |
— | — | @@ -210,9 +210,9 @@ |
211 | 211 | * Also catches any errors during processing, writes them to |
212 | 212 | * debug log, blanks result array and returns false. |
213 | 213 | * |
214 | | - * @param String: $content XMP data |
215 | | - * @param Boolean: $allOfIt If this is all the data (true) or if its split up (false). Default true |
216 | | - * @param Boolean: $reset - does xml parser need to be reset. Default false |
| 214 | + * @param $content String: XMP data |
| 215 | + * @param $allOfIt Boolean: If this is all the data (true) or if its split up (false). Default true |
| 216 | + * @param $reset Boolean: does xml parser need to be reset. Default false |
217 | 217 | * @return Boolean success. |
218 | 218 | */ |
219 | 219 | public function parse( $content, $allOfIt = true, $reset = false ) { |
Index: trunk/phase3/includes/media/DjVu.php |
— | — | @@ -190,6 +190,7 @@ |
191 | 191 | /** |
192 | 192 | * Cache a document tree for the DjVu XML metadata |
193 | 193 | * @param $image File |
| 194 | + * @param $gettext Boolean: DOCUMENT (Default: false) |
194 | 195 | */ |
195 | 196 | function getMetaTree( $image , $gettext = false ) { |
196 | 197 | if ( isset( $image->dejaMetaTree ) ) { |
Index: trunk/phase3/includes/media/BitmapMetadataHandler.php |
— | — | @@ -52,7 +52,10 @@ |
53 | 53 | * Basically what used to be in BitmapHandler::getMetadata(). |
54 | 54 | * Just calls stuff in the Exif class. |
55 | 55 | * |
| 56 | + * Parameters are passed to the Exif class. |
| 57 | + * |
56 | 58 | * @param $filename string |
| 59 | + * @param $byteOrder string |
57 | 60 | */ |
58 | 61 | function getExif ( $filename, $byteOrder ) { |
59 | 62 | global $wgShowEXIF; |
Index: trunk/phase3/includes/media/Generic.php |
— | — | @@ -364,7 +364,7 @@ |
365 | 365 | * @param &$array Array An array containing elements for each type of visibility |
366 | 366 | * and each of those elements being an array of metadata items. This function adds |
367 | 367 | * a value to that array. |
368 | | - * @param $visbility string ('visible' or 'collapsed') if this value is hidden |
| 368 | + * @param $visibility string ('visible' or 'collapsed') if this value is hidden |
369 | 369 | * by default. |
370 | 370 | * @param $type String type of metadata tag (currently always 'exif') |
371 | 371 | * @param $id String the name of the metadata tag (like 'artist' for example). |
Index: trunk/phase3/includes/ChangesList.php |
— | — | @@ -344,9 +344,11 @@ |
345 | 345 | $this->getLanguage()->time( $rc->mAttribs['rc_timestamp'], true, true ) . ' . . '; |
346 | 346 | } |
347 | 347 | |
348 | | - /** Insert links to user page, user talk page and eventually a blocking link |
| 348 | + /** |
| 349 | + * Insert links to user page, user talk page and eventually a blocking link |
349 | 350 | * |
350 | | - * @param $rc RecentChange |
| 351 | + * @param &$s String HTML to update |
| 352 | + * @param &$rc RecentChange |
351 | 353 | */ |
352 | 354 | public function insertUserRelatedLinks( &$s, &$rc ) { |
353 | 355 | if( $this->isDeleted( $rc, Revision::DELETED_USER ) ) { |
— | — | @@ -359,7 +361,7 @@ |
360 | 362 | } |
361 | 363 | |
362 | 364 | /** |
363 | | - * insert a formatted action |
| 365 | + * Insert a formatted action |
364 | 366 | * |
365 | 367 | * @param $rc RecentChange |
366 | 368 | */ |
Index: trunk/phase3/includes/MagicWord.php |
— | — | @@ -10,9 +10,14 @@ |
11 | 11 | |
12 | 12 | /** |
13 | 13 | * This class encapsulates "magic words" such as #redirect, __NOTOC__, etc. |
14 | | - * Usage: |
15 | | - * if (MagicWord::get( 'redirect' )->match( $text ) ) |
16 | 14 | * |
| 15 | + * @par Usage: |
| 16 | + * @code |
| 17 | + * if (MagicWord::get( 'redirect' )->match( $text ) ) { |
| 18 | + * // some code |
| 19 | + * } |
| 20 | + * @endcode |
| 21 | + * |
17 | 22 | * Possible future improvements: |
18 | 23 | * * Simultaneous searching for a number of magic words |
19 | 24 | * * MagicWord::$mObjects in shared memory |
— | — | @@ -23,14 +28,15 @@ |
24 | 29 | * To add magic words in an extension, use $magicWords in a file listed in |
25 | 30 | * $wgExtensionMessagesFiles[]. |
26 | 31 | * |
27 | | - * Example: |
28 | | - * |
| 32 | + * @par Example: |
| 33 | + * @code |
29 | 34 | * $magicWords = array(); |
30 | 35 | * |
31 | 36 | * $magicWords['en'] = array( |
32 | 37 | * 'magicwordkey' => array( 0, 'case_insensitive_magic_word' ), |
33 | 38 | * 'magicwordkey2' => array( 1, 'CASE_sensitive_magic_word2' ), |
34 | 39 | * ); |
| 40 | + * @endcode |
35 | 41 | * |
36 | 42 | * For magic words which are also Parser variables, add a MagicWordwgVariableIDs |
37 | 43 | * hook. Use string keys. |
Index: trunk/phase3/includes/WikiPage.php |
— | — | @@ -1900,7 +1900,7 @@ |
1901 | 1901 | * Revision::DELETED_RESTRICTED |
1902 | 1902 | * @param $id int article ID |
1903 | 1903 | * @param $commit boolean defaults to true, triggers transaction end |
1904 | | - * @param &$errors Array of errors to append to |
| 1904 | + * @param &$error Array of errors to append to |
1905 | 1905 | * @param $user User The relevant user |
1906 | 1906 | * @return boolean true if successful |
1907 | 1907 | */ |
Index: trunk/phase3/includes/specials/SpecialUserrights.php |
— | — | @@ -493,7 +493,9 @@ |
494 | 494 | /** |
495 | 495 | * Adds a table with checkboxes where you can select what groups to add/remove |
496 | 496 | * |
| 497 | + * @todo Just pass the username string? |
497 | 498 | * @param $usergroups Array: groups the user belongs to |
| 499 | + * @param $user User a user object |
498 | 500 | * @return string XHTML table element with checkboxes |
499 | 501 | */ |
500 | 502 | private function groupCheckboxes( $usergroups, $user ) { |
Index: trunk/phase3/includes/specials/SpecialUndelete.php |
— | — | @@ -1263,6 +1263,8 @@ |
1264 | 1264 | * Fetch revision text link if it's available to all users |
1265 | 1265 | * |
1266 | 1266 | * @param $rev Revision |
| 1267 | + * @param $titleObj Title |
| 1268 | + * @param $ts Timestamp |
1267 | 1269 | * @return string |
1268 | 1270 | */ |
1269 | 1271 | function getPageLink( $rev, $titleObj, $ts ) { |
— | — | @@ -1292,6 +1294,10 @@ |
1293 | 1295 | * Fetch image view link if it's available to all users |
1294 | 1296 | * |
1295 | 1297 | * @param $file File |
| 1298 | + * @param $titleObj Title |
| 1299 | + * @param $ts A timestamp |
| 1300 | + * @param $key String: a storage key |
| 1301 | + * |
1296 | 1302 | * @return String: HTML fragment |
1297 | 1303 | */ |
1298 | 1304 | function getFileLink( $file, $titleObj, $ts, $key ) { |
Index: trunk/phase3/includes/specials/SpecialUserlogin.php |
— | — | @@ -72,8 +72,6 @@ |
73 | 73 | |
74 | 74 | /** |
75 | 75 | * Loader |
76 | | - * |
77 | | - * @param $request WebRequest object |
78 | 76 | */ |
79 | 77 | function load() { |
80 | 78 | global $wgAuth, $wgHiddenPrefs, $wgEnableEmail, $wgRedirectOnLogin; |
Index: trunk/phase3/includes/specials/SpecialListusers.php |
— | — | @@ -263,6 +263,7 @@ |
264 | 264 | * Format a link to a group description page |
265 | 265 | * |
266 | 266 | * @param $group String: group name |
| 267 | + * @param $username String Username |
267 | 268 | * @return string |
268 | 269 | */ |
269 | 270 | protected static function buildGroupLink( $group, $username ) { |
Index: trunk/phase3/includes/PHPVersionError.php |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | * |
9 | 9 | * Calling this function kills execution immediately. |
10 | 10 | * |
11 | | - * @param $entryPoint String Which entry point we're protecting. One of: |
| 11 | + * @param $type String Which entry point we are protecting. One of: |
12 | 12 | * - index.php |
13 | 13 | * - load.php |
14 | 14 | * - api.php |
— | — | @@ -88,4 +88,4 @@ |
89 | 89 | } |
90 | 90 | echo( "$finalOutput\n" ); |
91 | 91 | die( 1 ); |
92 | | -} |
\ No newline at end of file |
| 92 | +} |
Index: trunk/phase3/includes/WebResponse.php |
— | — | @@ -131,9 +131,14 @@ |
132 | 132 | } |
133 | 133 | |
134 | 134 | /** |
| 135 | + * @todo document. It just ignore optional parameters. |
| 136 | + * |
135 | 137 | * @param $name String: name of cookie |
136 | 138 | * @param $value String: value to give cookie |
137 | | - * @param $expire Int: number of seconds til cookie expires |
| 139 | + * @param $expire Int: number of seconds til cookie expires (Default: 0) |
| 140 | + * @param $prefix TODO DOCUMENT (Default: null) |
| 141 | + * @param $domain TODO DOCUMENT (Default: null) |
| 142 | + * |
138 | 143 | */ |
139 | 144 | public function setcookie( $name, $value, $expire = 0, $prefix = null, $domain = null ) { |
140 | 145 | $this->cookies[$name] = $value; |
Index: trunk/phase3/languages/Language.php |
— | — | @@ -1261,7 +1261,7 @@ |
1262 | 1262 | * |
1263 | 1263 | * Based on a PHP-Nuke block by Sharjeel which is released under GNU/GPL license |
1264 | 1264 | * |
1265 | | - * @link http://phpnuke.org/modules.php?name=News&file=article&sid=8234&mode=thread&order=0&thold=0 |
| 1265 | + * @see http://phpnuke.org/modules.php?name=News&file=article&sid=8234&mode=thread&order=0&thold=0 |
1266 | 1266 | * |
1267 | 1267 | * @param $ts string |
1268 | 1268 | * |
Index: trunk/phase3/languages/classes/LanguageBe.php |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | * @ingroup Language |
9 | 9 | * |
10 | 10 | * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com> |
11 | | - * @link http://be.wikipedia.org/wiki/Talk:LanguageBe.php |
| 11 | + * @see http://be.wikipedia.org/wiki/Talk:LanguageBe.php |
12 | 12 | * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License |
13 | 13 | * @license http://www.gnu.org/copyleft/fdl.html GNU Free Documentation License |
14 | 14 | */ |
Index: trunk/phase3/languages/classes/LanguageBe_tarask.php |
— | — | @@ -4,7 +4,7 @@ |
5 | 5 | * @ingroup Language |
6 | 6 | * |
7 | 7 | * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com> |
8 | | - * @link http://be-x-old.wikipedia.org/wiki/Project_talk:LanguageBe_tarask.php |
| 8 | + * @see http://be-x-old.wikipedia.org/wiki/Project_talk:LanguageBe_tarask.php |
9 | 9 | * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License |
10 | 10 | * @license http://www.gnu.org/copyleft/fdl.html GNU Free Documentation License |
11 | 11 | */ |