lhc/web/wiklou.git
13 years agoPrefix searches for users, not pages
Sam Reed [Tue, 10 Aug 2010 10:05:31 +0000 (10:05 +0000)]
Prefix searches for users, not pages

13 years agoAdd ID to minor/watch labels to allow separate styling of these lebels.
Raimond Spekking [Tue, 10 Aug 2010 08:51:11 +0000 (08:51 +0000)]
Add ID to minor/watch labels to allow separate styling of these lebels.

13 years agoAdded some docs
Jeroen De Dauw [Tue, 10 Aug 2010 06:17:49 +0000 (06:17 +0000)]
Added some docs

13 years agoUse only the page relevant pieces in the parser cache key. Eg. two users with differe...
Platonides [Mon, 9 Aug 2010 21:53:21 +0000 (21:53 +0000)]
Use only the page relevant pieces in the parser cache key. Eg. two users with different math options will now
use the same parsercache entry for articles without <math> tags.
The cache key format is kept as a fallback so the old cached entries can be reused.

Should boost parsercache hits, but it also makes easier to pollute the parsercache by tag hooks that behave
badly, directly using $wgUser or $wgLang.

Extensions hooking PageRenderingHash now see !edit=0 and the !printable=1 bits.

Fixes bug 24714 - Usage of {{#dateformat: }} in wikis without $wgUseDynamicDates can lead to unexpected results

Builds upon r70498, r70498, r70501, r70517, r70651, r70653, r70765, r70780.

13 years agoFix r70770: Will I ever get this working? :)
X! [Mon, 9 Aug 2010 21:03:13 +0000 (21:03 +0000)]
Fix r70770: Will I ever get this working? :)

13 years agoChange require_once to actual path
Sam Reed [Mon, 9 Aug 2010 20:40:38 +0000 (20:40 +0000)]
Change require_once to actual path

Remove unused array

13 years agoFollow up r70653. Missing line.
Platonides [Mon, 9 Aug 2010 20:39:48 +0000 (20:39 +0000)]
Follow up r70653. Missing line.

13 years ago* (bug 21052) Fix link color for stubs in NewPages
Raimond Spekking [Mon, 9 Aug 2010 20:36:21 +0000 (20:36 +0000)]
* (bug 21052) Fix link color for stubs in NewPages

13 years agoLocalisation updates for core and extension messages from translatewiki.net (2010...
Raimond Spekking [Mon, 9 Aug 2010 19:50:21 +0000 (19:50 +0000)]
Localisation updates for core and extension messages from translatewiki.net (2010-08-09 19:38:00 UTC)

13 years ago* (bug 11005) Add CSS class to empty pages in Special:Newpages
Raimond Spekking [Mon, 9 Aug 2010 19:35:56 +0000 (19:35 +0000)]
* (bug 11005) Add CSS class to empty pages in Special:Newpages

13 years agoFollow-up r70773 per Niklas suggestion.
Raimond Spekking [Mon, 9 Aug 2010 19:25:11 +0000 (19:25 +0000)]
Follow-up r70773 per Niklas suggestion.

13 years ago* (bug 8140) Add dedicated CSS classes to Special:Newpages elements
Raimond Spekking [Mon, 9 Aug 2010 19:04:14 +0000 (19:04 +0000)]
* (bug 8140) Add dedicated CSS classes to Special:Newpages elements
Especially needed for transclution of this special page to hide unneeded elements.

13 years agoRemove unnecessary require(). Autoloader already handles this
Chad Horohoe [Mon, 9 Aug 2010 18:55:09 +0000 (18:55 +0000)]
Remove unnecessary require(). Autoloader already handles this

13 years agoRemove silly end-of-class comment
Chad Horohoe [Mon, 9 Aug 2010 18:54:43 +0000 (18:54 +0000)]
Remove silly end-of-class comment

13 years agoFollowup to r70701: Facepalm fixing.
X! [Mon, 9 Aug 2010 16:26:35 +0000 (16:26 +0000)]
Followup to r70701: Facepalm fixing.

13 years agoFixes for password checker from r70520:
Max Semenik [Mon, 9 Aug 2010 16:17:00 +0000 (16:17 +0000)]
Fixes for password checker from r70520:
* Removed the upper bound for brute force complexity checks
* Score for repetitions is now linear and is subtracted from brute force score to avoid overpenalizing long passwords
* Disabled checks by default for now, since many people consider them overly intrusive
* Made OutputPage::addPasswordSecurity() include jQuery just in case it's not already included
* Documented a little

13 years agoSwap order of exists() and isAlwaysKnown() checks, as the latter is generally less...
Roan Kattouw [Mon, 9 Aug 2010 15:35:36 +0000 (15:35 +0000)]
Swap order of exists() and isAlwaysKnown() checks, as the latter is generally less expensive. Could not reproduce a case where Linker::link() actually caused an existence check to be ran for an always-known title, though.

13 years agoIt should only be saved in the ParserCache if it IS cacheable.
Platonides [Mon, 9 Aug 2010 15:28:23 +0000 (15:28 +0000)]
It should only be saved in the ParserCache if it IS cacheable.
Confusion in r67185, when translating the original condition (!= -1)
into the new isCacheable().

13 years agoMove pieces related to ParserOutput expiry into a new CacheTime class.
Platonides [Mon, 9 Aug 2010 14:58:08 +0000 (14:58 +0000)]
Move pieces related to ParserOutput expiry into a new CacheTime class.

13 years ago* Revert r66878, completely misses the point of factoring out doEdit() in the first...
Tim Starling [Mon, 9 Aug 2010 08:33:42 +0000 (08:33 +0000)]
* Revert r66878, completely misses the point of factoring out doEdit() in the first place, which was to separate the UI layer from the backend layer, to support callers with alternate UIs or no UIs.
* Reverted followup 66880.
* Reverted dependent changes r67752, r68606, r68608, r68609. The point of deprecating insertArticle()/updateArticle() was to allow the UI code to be moved to EditPage. If you move that exact EditPage-specific functionality back into Article::doEdit(), and call it from all sorts of non-EditPage places, then we'll hit the same sorts of bugs we had before r14834.

13 years agoPer CR r52888, have Article::getParserOptions() clone the object itself, so that...
Tim Starling [Mon, 9 Aug 2010 07:41:25 +0000 (07:41 +0000)]
Per CR r52888, have Article::getParserOptions() clone the object itself, so that the caller doesn't have to do it.

13 years agoReverting r70585 since it breaks the whole functionality. Bug 24700 reopened.
Huji [Mon, 9 Aug 2010 06:33:54 +0000 (06:33 +0000)]
Reverting r70585 since it breaks the whole functionality. Bug 24700 reopened.

13 years agoAdded ExtensionTypes hook that can be called from static context and deprecated the...
Jeroen De Dauw [Mon, 9 Aug 2010 06:16:05 +0000 (06:16 +0000)]
Added ExtensionTypes hook that can be called from static context and deprecated the old one.

13 years agoThis change puts extensions that have an unknown type into the 'other' category,...
Jeroen De Dauw [Mon, 9 Aug 2010 01:12:21 +0000 (01:12 +0000)]
This change puts extensions that have an unknown type into the 'other' category, instead of not displaying them at all, and ensures this category is displayed as the last one (not careful use of SpecialVersionExtensionTypes broke this).

13 years agoMade base extension types accessible for other code
Jeroen De Dauw [Mon, 9 Aug 2010 00:21:09 +0000 (00:21 +0000)]
Made base extension types accessible for other code

13 years agoAdd format=dump and format=dumpfm, outputs results in PHP's var_dump() format. Findin...
X! [Mon, 9 Aug 2010 00:19:55 +0000 (00:19 +0000)]
Add format=dump and format=dumpfm, outputs results in PHP's var_dump() format. Finding the type of a variable is a little annoying with txt, and dbg is a little bit harder to parse.

13 years agoFollow up to r70661. Restored original behavior but with logical use of the boolean.
Jeroen De Dauw [Sun, 8 Aug 2010 22:05:49 +0000 (22:05 +0000)]
Follow up to r70661. Restored original behavior but with logical use of the boolean.

13 years agoLocalisation updates for core and extension messages from translatewiki.net (2010...
Raimond Spekking [Sun, 8 Aug 2010 19:49:46 +0000 (19:49 +0000)]
Localisation updates for core and extension messages from translatewiki.net (2010-08-08 19:31:00 UTC)

13 years agoModified Special:Movepage to subclass UnlistedSpecialPage
Alexandre Emsenhuber [Sun, 8 Aug 2010 18:46:49 +0000 (18:46 +0000)]
Modified Special:Movepage to subclass UnlistedSpecialPage

13 years agoMoved the @todo to the bottom of the comment; seems doxygen is taking the "This progr...
Alexandre Emsenhuber [Sun, 8 Aug 2010 17:46:52 +0000 (17:46 +0000)]
Moved the @todo to the bottom of the comment; seems doxygen is taking the "This program is free software; [...]" part inside it

13 years agocoding style tweaks
Jack Phoenix [Sun, 8 Aug 2010 16:57:31 +0000 (16:57 +0000)]
coding style tweaks

13 years agoUpdate tables.sql for category sorting changes
Aryeh Gregor [Sun, 8 Aug 2010 16:51:09 +0000 (16:51 +0000)]
Update tables.sql for category sorting changes

Pointed out by X! on Code Review for r69961.  There are a couple of
FIXMEs here, I'm waiting for review to evaluate how to fix them.

13 years agofollow-up to r70703: converted spaces to tabs and trimmed trailing spaces
Jack Phoenix [Sun, 8 Aug 2010 16:45:14 +0000 (16:45 +0000)]
follow-up to r70703: converted spaces to tabs and trimmed trailing spaces

13 years ago(bug 24408) Remove include path changes in LocalSettings.php. Not needed, as everythi...
Chad Horohoe [Sun, 8 Aug 2010 16:35:17 +0000 (16:35 +0000)]
(bug 24408) Remove include path changes in LocalSettings.php. Not needed, as everything should be in the Autoloader

13 years agoFollowup r70711, release notes
Chad Horohoe [Sun, 8 Aug 2010 16:21:28 +0000 (16:21 +0000)]
Followup r70711, release notes

13 years agoGreatly simplify path and extension detection for NoLocalSettings.php. Fixes bug...
Chad Horohoe [Sun, 8 Aug 2010 16:06:21 +0000 (16:06 +0000)]
Greatly simplify path and extension detection for NoLocalSettings.php. Fixes bug 21215.

13 years ago(bug 24722) Only show blockinfo if user is actually blocked for list=allusers
X! [Sun, 8 Aug 2010 15:33:43 +0000 (15:33 +0000)]
(bug 24722) Only show blockinfo if user is actually blocked for list=allusers

13 years agoRemove OK message for SQLite search. Outputs as warning and is potentially confusing
Chad Horohoe [Sun, 8 Aug 2010 15:30:40 +0000 (15:30 +0000)]
Remove OK message for SQLite search. Outputs as warning and is potentially confusing

13 years agoTweak output from install. Make non-fatals still say OK, but output their possible...
Chad Horohoe [Sun, 8 Aug 2010 15:29:32 +0000 (15:29 +0000)]
Tweak output from install. Make non-fatals still say OK, but output their possible warnings.

13 years agoFollowup to r70658: Code styling, use ApiPageSet to fix redirects.
X! [Sun, 8 Aug 2010 15:03:30 +0000 (15:03 +0000)]
Followup to r70658: Code styling, use ApiPageSet to fix redirects.

13 years agoRemoved PHP4-ism
Alexandre Emsenhuber [Sun, 8 Aug 2010 14:58:29 +0000 (14:58 +0000)]
Removed PHP4-ism

13 years agoFollowup to r70638: Clean up code, add prop to function args, add comment
X! [Sun, 8 Aug 2010 14:55:08 +0000 (14:55 +0000)]
Followup to r70638: Clean up code, add prop to function args, add comment

13 years agoSeems I forgot to commit these files in r70699
Alexandre Emsenhuber [Sun, 8 Aug 2010 14:28:01 +0000 (14:28 +0000)]
Seems I forgot to commit these files in r70699

13 years ago* Standardised file description headers
Alexandre Emsenhuber [Sun, 8 Aug 2010 14:23:14 +0000 (14:23 +0000)]
* Standardised file description headers
* Added some descriptions
* Added @file where needed

13 years ago* Removed unused globals: $wgEnableSerializedMessages, $wgCheckSerialized,
Niklas Laxström [Sun, 8 Aug 2010 14:04:56 +0000 (14:04 +0000)]
* Removed unused globals: $wgEnableSerializedMessages, $wgCheckSerialized,
  $wgUseMemCached, $wgDisableSearchContext, $wgColorErrors,
  $wgUseZhdaemon, $wgZhdaemonHost and $wgZhdaemonPort.

Followup: r70691, r70694, r70695, r70696, r70697.

13 years agoRemoved $wgUseZhdaemon, $wgZhdaemonHost and $wgZhdaemonPort. Apparently unused since...
Niklas Laxström [Sun, 8 Aug 2010 14:01:15 +0000 (14:01 +0000)]
Removed $wgUseZhdaemon, $wgZhdaemonHost and $wgZhdaemonPort. Apparently unused since r6878 at 2004-12-29.

13 years agoRemove $wgColorErrors. Apparently unused at least since r17991 at 2006-11-29
Niklas Laxström [Sun, 8 Aug 2010 13:52:39 +0000 (13:52 +0000)]
Remove $wgColorErrors. Apparently unused at least since r17991 at 2006-11-29

13 years agoRemove $wgDisableSearchContext, unused for a long time. Can't find exact revision.
Niklas Laxström [Sun, 8 Aug 2010 13:49:19 +0000 (13:49 +0000)]
Remove $wgDisableSearchContext, unused for a long time. Can't find exact revision.

13 years agoRemoved deprecated $wgUseMemCached from DefaultSettings, not used anywhere
Max Semenik [Sun, 8 Aug 2010 13:22:22 +0000 (13:22 +0000)]
Removed deprecated $wgUseMemCached from DefaultSettings, not used anywhere

13 years agoKill NamespaceCompat. Nothing, anywhere (not even comments, since r70692) still refer...
Chad Horohoe [Sun, 8 Aug 2010 13:16:10 +0000 (13:16 +0000)]
Kill NamespaceCompat. Nothing, anywhere (not even comments, since r70692) still references the old class. To do so means to not support 5.3+

13 years agoRemoved $wgEnableSerializedMessages and $wgCheckSerialized again.
Niklas Laxström [Sun, 8 Aug 2010 13:06:16 +0000 (13:06 +0000)]
Removed $wgEnableSerializedMessages and $wgCheckSerialized again.

Were removed by tim on r52503, came back with r53282 which is marked as reverted but apparently is not.

13 years agoBig commit: kill almost every freeResult() call as useless
Chad Horohoe [Sun, 8 Aug 2010 12:27:48 +0000 (12:27 +0000)]
Big commit: kill almost every freeResult() call as useless

13 years agoFix for r70684: correct description
Alexandre Emsenhuber [Sun, 8 Aug 2010 12:09:18 +0000 (12:09 +0000)]
Fix for r70684: correct description

13 years ago* standardised file headers
Alexandre Emsenhuber [Sun, 8 Aug 2010 11:55:47 +0000 (11:55 +0000)]
* standardised file headers
* added a basic description
* added @file

13 years ago* standardised file headers
Alexandre Emsenhuber [Sun, 8 Aug 2010 10:44:59 +0000 (10:44 +0000)]
* standardised file headers
* added a basic description
* added @file

13 years ago* fixed doxygen warnings
Alexandre Emsenhuber [Sun, 8 Aug 2010 09:55:56 +0000 (09:55 +0000)]
* fixed doxygen warnings
* @addtogroup -> @ingroup
* removed incorrect copyright notice
* added a file description sentence

13 years agoFixed mistake in docs
Jeroen De Dauw [Sun, 8 Aug 2010 07:06:09 +0000 (07:06 +0000)]
Fixed mistake in docs

13 years agoMark the comment as documentation
Niklas Laxström [Sun, 8 Aug 2010 06:36:44 +0000 (06:36 +0000)]
Mark the comment as documentation

13 years agoFollowup r70515, commiting forgotten file
Niklas Laxström [Sun, 8 Aug 2010 06:36:00 +0000 (06:36 +0000)]
Followup r70515, commiting forgotten file

13 years ago(bug 15470) First letters of filenames are always capitalized by upload JS
Max Semenik [Sun, 8 Aug 2010 06:35:41 +0000 (06:35 +0000)]
(bug 15470) First letters of filenames are always capitalized by upload JS

13 years agoFixed minor logic error that caused layout issues
Jeroen De Dauw [Sun, 8 Aug 2010 05:21:14 +0000 (05:21 +0000)]
Fixed minor logic error that caused layout issues

13 years ago(bug 24330) Add &redirect parameter to ?action=edit
X! [Sun, 8 Aug 2010 01:14:48 +0000 (01:14 +0000)]
(bug 24330) Add &redirect parameter to ?action=edit

13 years agoAllow negative caching in process cache and use it, return early in replace() if...
Niklas Laxström [Sun, 8 Aug 2010 00:28:17 +0000 (00:28 +0000)]
Allow negative caching in process cache and use it, return early in replace() if cannot use db

13 years agoUse for loops for iterating query results
Niklas Laxström [Sat, 7 Aug 2010 23:43:28 +0000 (23:43 +0000)]
Use for loops for iterating query results

13 years agoSpelling fixes in documentation
Niklas Laxström [Sat, 7 Aug 2010 23:41:03 +0000 (23:41 +0000)]
Spelling fixes in documentation

13 years agoMake thumbsize option go through ParserOptions.
Platonides [Sat, 7 Aug 2010 22:35:23 +0000 (22:35 +0000)]
Make thumbsize option go through ParserOptions.
Yet another parameter for makeImageLink2...

13 years agoSome minor changes I had in my working copy.
Platonides [Sat, 7 Aug 2010 22:17:00 +0000 (22:17 +0000)]
Some minor changes I had in my working copy.

13 years agoRevert r70533 and the piece of r70501 that it tried to fix. Note and open bug for...
Platonides [Sat, 7 Aug 2010 21:21:28 +0000 (21:21 +0000)]
Revert r70533 and the piece of r70501 that it tried to fix. Note and open bug for the issue.
This has been present since introduction of {{#formatdate: }} in r48249 (bug 4582)

13 years agoTweak "config-install-interwiki-exists". Spotted by Hamilton Abreu.
Siebrand Mazeland [Sat, 7 Aug 2010 21:12:36 +0000 (21:12 +0000)]
Tweak "config-install-interwiki-exists". Spotted by Hamilton Abreu.

13 years agoThis documents the file, not the constant below :)
Alexandre Emsenhuber [Sat, 7 Aug 2010 20:53:41 +0000 (20:53 +0000)]
This documents the file, not the constant below :)

13 years ago* changed @addtogroup to @ingroup
Alexandre Emsenhuber [Sat, 7 Aug 2010 20:28:58 +0000 (20:28 +0000)]
* changed @addtogroup to @ingroup
* added @file

13 years agoStandardised file description headers, added @file
Alexandre Emsenhuber [Sat, 7 Aug 2010 19:59:42 +0000 (19:59 +0000)]
Standardised file description headers, added @file

13 years agoLocalisation updates for core and extension messages from translatewiki.net (2010...
Raimond Spekking [Sat, 7 Aug 2010 19:16:16 +0000 (19:16 +0000)]
Localisation updates for core and extension messages from translatewiki.net (2010-08-07 18:45:00 UTC)

13 years agoFix for r68897: correct use of wfAppendQuery()
Alexandre Emsenhuber [Sat, 7 Aug 2010 19:10:28 +0000 (19:10 +0000)]
Fix for r68897: correct use of wfAppendQuery()

13 years agoPer comments, follow-up to r70278: make patrol tokens compatibles between api and...
Alexandre Emsenhuber [Sat, 7 Aug 2010 18:56:52 +0000 (18:56 +0000)]
Per comments, follow-up to r70278: make patrol tokens compatibles between api and normal interface

13 years ago-(bug 24484) Add prop=pageprops module
X! [Sat, 7 Aug 2010 18:50:23 +0000 (18:50 +0000)]
-(bug 24484) Add prop=pageprops module
-Add $wgPageProps global variable

13 years agoAdded a note to set $wgShowExceptionDetails = true; in LocalSettings.php to get detai...
Alexandre Emsenhuber [Sat, 7 Aug 2010 18:32:39 +0000 (18:32 +0000)]
Added a note to set $wgShowExceptionDetails = true; in LocalSettings.php to get details when encoutring an second exception in the exception handler

13 years agoRemove redundant text post r70628
Sam Reed [Sat, 7 Aug 2010 17:41:51 +0000 (17:41 +0000)]
Remove redundant text post r70628

13 years agoFollowup to r70584: Use fourth parameter of ApiQueryBase::addWhereRange instead of...
X! [Sat, 7 Aug 2010 16:51:25 +0000 (16:51 +0000)]
Followup to r70584: Use fourth parameter of ApiQueryBase::addWhereRange instead of a second call

13 years agoFollowup r70587: Remove unnecessary references
X! [Sat, 7 Aug 2010 16:46:57 +0000 (16:46 +0000)]
Followup r70587: Remove unnecessary references

13 years agoHack up UserRightsProxy to support setting preferences of remote users, needed for...
Roan Kattouw [Sat, 7 Aug 2010 16:08:22 +0000 (16:08 +0000)]
Hack up UserRightsProxy to support setting preferences of remote users, needed for a feature in PrefSwitch I'm about to commit. The way this hacks around UserRightsProxy's 'helpful' behavior of refusing to work with wikis not in $wgLoclDatabases is kinda ugly (I'm open to alternative suggestions), but then this entire class is an ugly hack and should be replaced by something more sane (even brion, its author, agrees with this :P)

13 years agoRemoved @package and added @file from the documentation for consistency with other...
Alexandre Emsenhuber [Sat, 7 Aug 2010 14:58:18 +0000 (14:58 +0000)]
Removed @package and added @file from the documentation for consistency with other files

13 years agoPut copyright notice in the standard place (and added @file)
Alexandre Emsenhuber [Sat, 7 Aug 2010 14:35:18 +0000 (14:35 +0000)]
Put copyright notice in the standard place (and added @file)

13 years agoUpdate outdated API documentation... (is this file even used any more?)
Sam Reed [Sat, 7 Aug 2010 13:57:15 +0000 (13:57 +0000)]
Update outdated API documentation... (is this file even used any more?)

13 years agoRevert changes to SpecialSearch.php in r70608 because Special:Search didn't load...
Siebrand Mazeland [Sat, 7 Aug 2010 12:45:10 +0000 (12:45 +0000)]
Revert changes to SpecialSearch.php in r70608 because Special:Search didn't load anymore.

PHP Notice:  Undefined property: SpecialSearch::$searchEngine in /www/w/includes/specials/SpecialSearch.php on line 796

catrope on IRC:
It asks the backend ($this->searchEngine) if it supports redirects but $this->searchEngine is only set in the code that generates results
So viewing Special:Search with no results listing has that var unset

13 years agoGood bye, SearchMysql4!
Max Semenik [Sat, 7 Aug 2010 07:51:52 +0000 (07:51 +0000)]
Good bye, SearchMysql4!

13 years agoNot implemented != deprecated
Max Semenik [Sat, 7 Aug 2010 07:38:05 +0000 (07:38 +0000)]
Not implemented != deprecated

13 years agoTypo in message, spotted by Hamilton Abreu on TWN
Max Semenik [Sat, 7 Aug 2010 07:31:21 +0000 (07:31 +0000)]
Typo in message, spotted by Hamilton Abreu on TWN

13 years agoUpdating main-ltr.css for Vector skin to ensure the RTL stylesheet mirros all items...
Huji [Sat, 7 Aug 2010 05:20:45 +0000 (05:20 +0000)]
Updating main-ltr.css for Vector skin to ensure the RTL stylesheet mirros all items from the LTR layout correctly. (See comments on mediawiki.org/wiki/Special:Code/MediaWiki/70549)

13 years agoFollow-up r70608: you don't need to override this stuff with empty functions, they...
Max Semenik [Sat, 7 Aug 2010 05:10:02 +0000 (05:10 +0000)]
Follow-up r70608: you don't need to override this stuff with empty functions, they're empty in the base class already

13 years agoDatabaseMssql class and related changes
Ryan Bies [Fri, 6 Aug 2010 23:44:00 +0000 (23:44 +0000)]
DatabaseMssql class and related changes

13 years agoLocalisation updates for core and extension messages from translatewiki.net (2010...
Raimond Spekking [Fri, 6 Aug 2010 22:24:01 +0000 (22:24 +0000)]
Localisation updates for core and extension messages from translatewiki.net (2010-08-06 22:06:00 UTC)

13 years agoFix for r70571, still have to use $_COOKIE here too, $wgContLang is undefined so far
Chad Horohoe [Fri, 6 Aug 2010 21:10:18 +0000 (21:10 +0000)]
Fix for r70571, still have to use $_COOKIE here too, $wgContLang is undefined so far

13 years agoTypo.
Rotem Liss [Fri, 6 Aug 2010 21:04:36 +0000 (21:04 +0000)]
Typo.

13 years agoLocalization update for he.
Rotem Liss [Fri, 6 Aug 2010 21:04:19 +0000 (21:04 +0000)]
Localization update for he.

13 years agoRefactor Makefile.py. Add new function to manualWordsTable() and fix bug for parsing...
Philip Tzou [Fri, 6 Aug 2010 20:05:07 +0000 (20:05 +0000)]
Refactor Makefile.py. Add new function to manualWordsTable() and fix bug for parsing tsi.src.

13 years ago* (bug 24236) Add add, remove, add-self, remove-self tags to meta=siteinfo&siprop...
X! [Fri, 6 Aug 2010 19:25:34 +0000 (19:25 +0000)]
* (bug 24236) Add add, remove, add-self, remove-self tags to meta=siteinfo&siprop=usergroups

13 years ago(bug 24700) Update dialog shown when clicking on the special page tab after saving...
Huji [Fri, 6 Aug 2010 19:07:56 +0000 (19:07 +0000)]
(bug 24700) Update dialog shown when clicking on the special page tab after saving preferences

13 years ago* (bug 24677) axto= parameters added to allcategories, allimages, alllinks, allmessag...
X! [Fri, 6 Aug 2010 18:58:10 +0000 (18:58 +0000)]
* (bug 24677) axto= parameters added to allcategories, allimages, alllinks, allmessages,  allpages, and allusers

13 years agowfForeignMemcKey() just exists, we don't have to keep around crazy back compat for...
Roan Kattouw [Fri, 6 Aug 2010 16:02:42 +0000 (16:02 +0000)]
wfForeignMemcKey() just exists, we don't have to keep around crazy back compat for that