| .. |
|
api
|
Prevent the following strict-standards warnings - i.e. when running with error_logging(E_ALL | E_STRICT); - which seems to disable the yucky "@" operator, as well as maxing out the pedantry of warnings. Nothing major found, just nice to be as explicit and as forward-compatible as possible.
|
2006-11-29 05:45:03 +00:00 |
|
cbt
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
normal
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
templates
|
* Change behavior of logins using the temporary e-mailed password (as stored
|
2006-12-12 04:15:00 +00:00 |
|
zhtable
|
|
|
|
.htaccess
|
|
|
|
AjaxDispatcher.php
|
* Removed lots of explicit require_once statements. The autoloader should theoretically be faster, because it always uses an absolute path, eliminating the need for a search, and it is never called unnecessarily. Absolute paths are also more robust in the face of odd configurations or usage patterns. Moved a few constants around to support this, they always have to be available before the method call.
|
2006-10-03 13:00:52 +00:00 |
|
AjaxFunctions.php
|
Reverting 17479/17480, breaks subclassing of Linker methods by skins. See my comment on bug 7405.
|
2006-11-08 07:12:03 +00:00 |
|
AjaxResponse.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
Article.php
|
* Set tabindex on fields in deletion form so you don't have to tab through
|
2006-12-23 07:18:51 +00:00 |
|
AuthPlugin.php
|
* Accept null parameter to User::setPassword() as indicating the password
|
2006-12-13 08:59:20 +00:00 |
|
AutoLoader.php
|
revert r18517; should have been on branch
|
2006-12-23 09:03:36 +00:00 |
|
BagOStuff.php
|
* Use INSERT IGNORE for db-based BagOStuff add/insert, for more memcache-like
|
2006-11-24 22:11:47 +00:00 |
|
Block.php
|
Fix regression from r17927 that broke IP::isInRange (and hence the autoblock whitelist).
|
2006-12-08 10:30:50 +00:00 |
|
CacheDependency.php
|
BC
|
2006-10-14 10:31:34 +00:00 |
|
Categoryfinder.php
|
|
|
|
CategoryPage.php
|
(bug 7892) Add media count to category page, à la subcats/pages. Used a new count() method I added to ImageGallery class.
|
2006-11-24 06:41:02 +00:00 |
|
ChangesList.php
|
XHTML fix in enhanced RC
|
2006-12-14 22:30:42 +00:00 |
|
CoreParserFunctions.php
|
(bug 8247) Minor tweaks to includes/CoreParserFunctions.php and parser test for ANCHORENCODE colon function
|
2006-12-22 02:36:06 +00:00 |
|
Credits.php
|
Reverting 17479/17480, breaks subclassing of Linker methods by skins. See my comment on bug 7405.
|
2006-11-08 07:12:03 +00:00 |
|
Database.php
|
Going ahead and adding this field while other DB updates are pending.
|
2006-12-14 13:22:52 +00:00 |
|
DatabaseFunctions.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
DatabaseOracle.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
DatabasePostgres.php
|
Change realTimestamp to a function only, per Tim's advice.
|
2006-12-01 04:37:48 +00:00 |
|
DateFormatter.php
|
Abolished $wgDBname as a unique wiki identifier, it doesn't work with the new-fangled feature we call "table prefixes". Instead use wfWikiID() for an identifier containing the DB name and the prefix if there is one, and wfMemcKey() for cache key construction.
|
2006-10-04 09:06:18 +00:00 |
|
DefaultSettings.php
|
Sort out user rights when patrolling. If a user has the "autopatrol" right, then their edits are auto-marked as patrolled. If a user *doesn't* have this right, then they can't mark their own edits as patrolled in the normal fashion.
|
2006-12-22 19:43:20 +00:00 |
|
Defines.php
|
Fixed pollution of a backend function with UI-only features. Autosummaries off by default.
|
2006-11-08 08:06:51 +00:00 |
|
DifferenceEngine.php
|
Per discussion on wikitech-l, add an (undo) link for on-top revisions as well. Also, don't do a merge if (undo) is being used for a straight revert
|
2006-12-11 09:39:39 +00:00 |
|
DjVuImage.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
EditPage.php
|
* Make the default messages for "undo" less intrusive, remove headings
|
2006-12-23 10:28:40 +00:00 |
|
Exception.php
|
Prevent the following strict-standards warnings - i.e. when running with error_logging(E_ALL | E_STRICT); - which seems to disable the yucky "@" operator, as well as maxing out the pedantry of warnings. Nothing major found, just nice to be as explicit and as forward-compatible as possible.
|
2006-11-29 05:45:03 +00:00 |
|
Exif.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
Export.php
|
Use Title::newMainPage() in various places instead of calling
|
2006-12-03 00:22:14 +00:00 |
|
ExternalEdit.php
|
|
|
|
ExternalStore.php
|
|
|
|
ExternalStoreDB.php
|
* Removed lots of explicit require_once statements. The autoloader should theoretically be faster, because it always uses an absolute path, eliminating the need for a search, and it is never called unnecessarily. Absolute paths are also more robust in the face of odd configurations or usage patterns. Moved a few constants around to support this, they always have to be available before the method call.
|
2006-10-03 13:00:52 +00:00 |
|
ExternalStoreHttp.php
|
|
|
|
FakeTitle.php
|
|
|
|
Feed.php
|
* Added global $wgStyleVersion to centralize bumping CSS and JS file versions
|
2006-10-13 21:48:19 +00:00 |
|
FileStore.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
GlobalFunctions.php
|
* (bug 6690) wfMsgNoTrans() transforms messages
|
2006-12-17 02:36:44 +00:00 |
|
HistoryBlob.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
Hooks.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
HTMLCacheUpdate.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
HTMLFileCache.php
|
Renamed CacheManager to HTMLFileCache, to avoid confusion with the other sort of cache.
|
2006-10-11 08:25:26 +00:00 |
|
HTMLForm.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
HttpFunctions.php
|
|
|
|
Image.php
|
revert r18517; should have been on branch
|
2006-12-23 09:03:36 +00:00 |
|
ImageFunctions.php
|
revert r18517; should have been on branch
|
2006-12-23 09:03:36 +00:00 |
|
ImageGallery.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
ImagePage.php
|
* (bug 532) Tweaked alt text for some interface messages
|
2006-12-22 20:31:10 +00:00 |
|
IP.php
|
Fix regression from r17927 that broke IP::isInRange (and hence the autoblock whitelist).
|
2006-12-08 10:30:50 +00:00 |
|
JobQueue.php
|
|
|
|
Licenses.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
LinkBatch.php
|
Fixed inefficient use of array_keys() introduced by Nick in r17880. If this is setting off alarms, then fix the alarms.
|
2006-11-25 17:11:58 +00:00 |
|
LinkCache.php
|
Abolished $wgDBname as a unique wiki identifier, it doesn't work with the new-fangled feature we call "table prefixes". Instead use wfWikiID() for an identifier containing the DB name and the prefix if there is one, and wfMemcKey() for cache key construction.
|
2006-10-04 09:06:18 +00:00 |
|
Linker.php
|
* (bug 8214) Output file size limit and actual file size in appropriate units on Special:Upload
|
2006-12-23 13:13:13 +00:00 |
|
LinkFilter.php
|
|
|
|
LinksUpdate.php
|
|
|
|
LoadBalancer.php
|
moved the status call so it is only called if max_lag is set, since that is the only time it's value is useful. This won't help Wikimedia, but it should help users who are not using multiple DB servers+max_lag
|
2006-11-29 23:13:59 +00:00 |
|
LogPage.php
|
Prevent the following strict-standards warnings - i.e. when running with error_logging(E_ALL | E_STRICT); - which seems to disable the yucky "@" operator, as well as maxing out the pedantry of warnings. Nothing major found, just nice to be as explicit and as forward-compatible as possible.
|
2006-11-29 05:45:03 +00:00 |
|
MacBinary.php
|
|
|
|
MagicWord.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
Math.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
memcached-client.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
MemcachedSessions.php
|
Abolished $wgDBname as a unique wiki identifier, it doesn't work with the new-fangled feature we call "table prefixes". Instead use wfWikiID() for an identifier containing the DB name and the prefix if there is one, and wfMemcKey() for cache key construction.
|
2006-10-04 09:06:18 +00:00 |
|
MessageCache.php
|
Fixed inefficient use of array_keys() introduced by Nick in r17880. If this is setting off alarms, then fix the alarms.
|
2006-11-25 17:11:58 +00:00 |
|
Metadata.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
mime.info
|
|
|
|
mime.types
|
|
|
|
MimeMagic.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
Namespace.php
|
Commited the categories redirect stuff by mistake.
|
2006-12-22 19:50:56 +00:00 |
|
ObjectCache.php
|
Revert r16928: crashed Wikimedia by breaking memcached
|
2006-10-11 22:41:38 +00:00 |
|
OutputPage.php
|
* Renaming the message 'protectedtext' to 'protectedpagetext', to prevent a duplicate display of the second paragraph due to the saved message.
|
2006-12-18 18:28:33 +00:00 |
|
PageHistory.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
Pager.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
Parser.php
|
Commited the categories redirect stuff by mistake.
|
2006-12-22 19:50:56 +00:00 |
|
ParserCache.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
Profiler.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
ProfilerSimple.php
|
$functionname not defined in this context, replacing with hardcoded "-setup" array key.
|
2006-11-29 12:32:43 +00:00 |
|
ProfilerSimpleUDP.php
|
Add the ability to change the profile ID for UDP profiling at runtime
|
2006-11-18 05:17:25 +00:00 |
|
ProfilerStub.php
|
Revert to previous version using $wgDBname instead of wfWikiID(); functions
|
2006-10-05 21:20:23 +00:00 |
|
ProtectionForm.php
|
Fixed inefficient use of array_keys() introduced by Nick in r17880. If this is setting off alarms, then fix the alarms.
|
2006-11-25 17:11:58 +00:00 |
|
proxy_check.php
|
|
|
|
ProxyTools.php
|
convert "::1" and other pseudo-IPv6 addresses that Apache may throw at us to their IPv4 counterparts
|
2006-11-29 08:08:57 +00:00 |
|
QueryPage.php
|
Save two function calls when pages are not cached.
|
2006-12-16 21:32:11 +00:00 |
|
RawPage.php
|
* Fix regression in cachability of generated CSS and JS for MonoBook skin,
|
2006-09-26 05:30:12 +00:00 |
|
RecentChange.php
|
Sort out user rights when patrolling. If a user has the "autopatrol" right, then their edits are auto-marked as patrolled. If a user *doesn't* have this right, then they can't mark their own edits as patrolled in the normal fashion.
|
2006-12-22 19:43:20 +00:00 |
|
Revision.php
|
Connecting to the database may help, but I'm guessing this function isn't used if no-one has complained.
|
2006-11-29 11:55:18 +00:00 |
|
Sanitizer.php
|
Prevent the following strict-standards warnings - i.e. when running with error_logging(E_ALL | E_STRICT); - which seems to disable the yucky "@" operator, as well as maxing out the pedantry of warnings. Nothing major found, just nice to be as explicit and as forward-compatible as possible.
|
2006-11-29 05:45:03 +00:00 |
|
SearchEngine.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
SearchMySQL.php
|
|
|
|
SearchMySQL4.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
SearchPostgres.php
|
Fix typo, thanks to Sven Klemm for finding.
|
2006-12-06 21:45:45 +00:00 |
|
SearchTsearch2.php
|
Variable name typo, but again I'm guessing this function isn't used if no-one has complained.
|
2006-11-29 11:58:49 +00:00 |
|
SearchUpdate.php
|
|
|
|
Setup.php
|
* Add AuthPluginSetup hook to override $wgAuth after configuration
|
2006-11-30 07:47:34 +00:00 |
|
SiteConfiguration.php
|
|
|
|
SiteStats.php
|
$fname is not defined / null in these contexts, replacing with __METHOD__
|
2006-11-29 12:45:47 +00:00 |
|
Skin.php
|
* (bug 532) Tweaked alt text for some interface messages
|
2006-12-22 20:31:10 +00:00 |
|
SkinTemplate.php
|
fix localized aliasing of various links from skin to special pages with subpages
|
2006-12-18 00:20:21 +00:00 |
|
SpecialAllmessages.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
SpecialAllpages.php
|
Prevent:
|
2006-12-19 05:38:55 +00:00 |
|
SpecialAncientpages.php
|
Reverting 17479/17480, breaks subclassing of Linker methods by skins. See my comment on bug 7405.
|
2006-11-08 07:12:03 +00:00 |
|
SpecialBlockip.php
|
Undo oddity from r17987; function doesn't need to be using references here in php5-land, just remove them and behave normally
|
2006-11-29 21:32:28 +00:00 |
|
SpecialBlockme.php
|
|
|
|
SpecialBooksources.php
|
Fix regressions in behaviour of Special:Booksources
|
2006-12-20 16:51:26 +00:00 |
|
SpecialBrokenRedirects.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialCategories.php
|
Reverting...this broke the site. Massive temporary tables and filesort eating up all slave servers.
|
2006-12-19 19:44:55 +00:00 |
|
SpecialConfirmemail.php
|
* Add a notification about the confirmation mail sent during account
|
2006-12-14 00:31:16 +00:00 |
|
SpecialContributions.php
|
Fix #8239 : really get the 50 next contribs
|
2006-12-13 20:28:17 +00:00 |
|
SpecialDeadendpages.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialDisambiguations.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
SpecialDoubleRedirects.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialEmailuser.php
|
(bug 8024) Introduce "send me copies of emails I send to others" preference
|
2006-12-01 18:39:43 +00:00 |
|
SpecialExport.php
|
* (bug 8148) Handle non-removable output buffers gracefully when cleaning
|
2006-12-11 01:51:21 +00:00 |
|
SpecialImagelist.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
SpecialImport.php
|
Prevent the following strict-standards warnings - i.e. when running with error_logging(E_ALL | E_STRICT); - which seems to disable the yucky "@" operator, as well as maxing out the pedantry of warnings. Nothing major found, just nice to be as explicit and as forward-compatible as possible.
|
2006-11-29 05:45:03 +00:00 |
|
SpecialIpblocklist.php
|
search buttons should use the 'searchbutton' system message
|
2006-12-21 21:07:19 +00:00 |
|
SpecialListredirects.php
|
Reverting 17479/17480, breaks subclassing of Linker methods by skins. See my comment on bug 7405.
|
2006-11-08 07:12:03 +00:00 |
|
SpecialListusers.php
|
Prevent the following strict-standards warnings - i.e. when running with error_logging(E_ALL | E_STRICT); - which seems to disable the yucky "@" operator, as well as maxing out the pedantry of warnings. Nothing major found, just nice to be as explicit and as forward-compatible as possible.
|
2006-11-29 05:45:03 +00:00 |
|
SpecialLockdb.php
|
* Made special page names case-insensitive and localisable. Care has been taken to maintain backwards compatibility.
|
2006-10-30 06:25:31 +00:00 |
|
SpecialLog.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
SpecialLonelypages.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialLongpages.php
|
* Removed lots of explicit require_once statements. The autoloader should theoretically be faster, because it always uses an absolute path, eliminating the need for a search, and it is never called unnecessarily. Absolute paths are also more robust in the face of odd configurations or usage patterns. Moved a few constants around to support this, they always have to be available before the method call.
|
2006-10-03 13:00:52 +00:00 |
|
SpecialMIMEsearch.php
|
Prevent the following strict-standards warnings - i.e. when running with error_logging(E_ALL | E_STRICT); - which seems to disable the yucky "@" operator, as well as maxing out the pedantry of warnings. Nothing major found, just nice to be as explicit and as forward-compatible as possible.
|
2006-11-29 05:45:03 +00:00 |
|
SpecialMostcategories.php
|
(bug 7612) Remove superfluous link to Special:Categories from result items on Special:Mostcategories
|
2006-12-23 14:09:38 +00:00 |
|
SpecialMostimages.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialMostlinked.php
|
Strict standards.
|
2006-12-16 21:53:34 +00:00 |
|
SpecialMostlinkedcategories.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialMostrevisions.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialMovepage.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
SpecialNewimages.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
SpecialNewpages.php
|
* Fix some plurals
|
2006-12-23 18:30:36 +00:00 |
|
SpecialPage.php
|
* (bug 8164) Special:Booksources should use GET for form submission
|
2006-12-16 19:20:44 +00:00 |
|
SpecialPopularpages.php
|
Reverting 17479/17480, breaks subclassing of Linker methods by skins. See my comment on bug 7405.
|
2006-11-08 07:12:03 +00:00 |
|
SpecialPreferences.php
|
* (bug 5411) Remove autopatrol preference; users who can mark edits patrolled will now have their edits marked as such regardless - per Brion's enthusiasm on the mailing list ;)
|
2006-12-18 21:39:36 +00:00 |
|
SpecialPrefixindex.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
SpecialRandompage.php
|
Use Title::newMainPage() in various places instead of calling
|
2006-12-03 00:22:14 +00:00 |
|
SpecialRandomredirect.php
|
Use Title::newMainPage() in various places instead of calling
|
2006-12-03 00:22:14 +00:00 |
|
SpecialRecentchanges.php
|
* (bug 8109) Template parameters ignored in "recentchangestext"
|
2006-12-19 13:42:35 +00:00 |
|
SpecialRecentchangeslinked.php
|
User::getOption now accept a default value to override default user values
|
2006-12-14 20:28:38 +00:00 |
|
SpecialResetpass.php
|
* Change behavior of logins using the temporary e-mailed password (as stored
|
2006-12-12 04:15:00 +00:00 |
|
SpecialRevisiondelete.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
SpecialSearch.php
|
User::getOption now accept a default value to override default user values
|
2006-12-14 20:28:38 +00:00 |
|
SpecialShortpages.php
|
* Fix some plurals
|
2006-12-23 18:30:36 +00:00 |
|
SpecialSpecialpages.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
SpecialStatistics.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialUncategorizedcategories.php
|
|
|
|
SpecialUncategorizedimages.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialUncategorizedpages.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialUndelete.php
|
(bug 8271) Show full time and date on viewer for individual deleted revisions
|
2006-12-23 12:30:08 +00:00 |
|
SpecialUnlockdb.php
|
* Made special page names case-insensitive and localisable. Care has been taken to maintain backwards compatibility.
|
2006-10-30 06:25:31 +00:00 |
|
SpecialUnusedcategories.php
|
Allow "ORDER BY value" to do its thing for databases without special magic. Per bug 8200.
|
2006-12-09 15:49:13 +00:00 |
|
SpecialUnusedimages.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialUnusedtemplates.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialUnwatchedpages.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialUpload.php
|
* (bug 8214) Output file size limit and actual file size in appropriate units on Special:Upload
|
2006-12-23 13:13:13 +00:00 |
|
SpecialUploadMogile.php
|
* Removed lots of explicit require_once statements. The autoloader should theoretically be faster, because it always uses an absolute path, eliminating the need for a search, and it is never called unnecessarily. Absolute paths are also more robust in the face of odd configurations or usage patterns. Moved a few constants around to support this, they always have to be available before the method call.
|
2006-10-03 13:00:52 +00:00 |
|
SpecialUserlogin.php
|
* Add a notification about the confirmation mail sent during account
|
2006-12-14 00:31:16 +00:00 |
|
SpecialUserlogout.php
|
|
|
|
SpecialUserrights.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
SpecialVersion.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
SpecialWantedcategories.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SpecialWantedpages.php
|
Reverting 17479/17480, breaks subclassing of Linker methods by skins. See my comment on bug 7405.
|
2006-11-08 07:12:03 +00:00 |
|
SpecialWatchlist.php
|
Fix Watchlist with patch from Sven Klemm, bug 8350
|
2006-12-21 15:20:19 +00:00 |
|
SpecialWhatlinkshere.php
|
Changing lines like this: "extract( $dbw->tableNames( 'page', 'archive' ) );" to be like this: "list ($page, $archive) = $dbw->tableNamesN( 'page', 'archive' );".
|
2006-11-27 08:36:57 +00:00 |
|
SquidUpdate.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
StreamFile.php
|
* (bug 8148) Handle non-removable output buffers gracefully when cleaning
|
2006-12-11 01:51:21 +00:00 |
|
StringUtils.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
StubObject.php
|
User::getOption now accept a default value to override default user values
|
2006-12-14 20:28:38 +00:00 |
|
Title.php
|
* Fix regression in email password resets on read-restricted sites
|
2006-12-23 06:45:30 +00:00 |
|
User.php
|
* Initialize user_editcount to 0 instead of NULL for newly created accounts
|
2006-12-22 23:46:08 +00:00 |
|
UserMailer.php
|
E_STRICT minor tweaks:
|
2006-12-04 11:28:48 +00:00 |
|
Utf8Case.php
|
Changing all the last references from LanguageUtf8 to Language, and finally removing it.
|
2006-08-06 14:23:53 +00:00 |
|
WatchedItem.php
|
Abolished $wgDBname as a unique wiki identifier, it doesn't work with the new-fangled feature we call "table prefixes". Instead use wfWikiID() for an identifier containing the DB name and the prefix if there is one, and wfMemcKey() for cache key construction.
|
2006-10-04 09:06:18 +00:00 |
|
WebRequest.php
|
Experimental workaround for http://bugs.php.net/bug.php?id=31892 , will be tested shortly.
|
2006-10-19 00:56:57 +00:00 |
|
WebResponse.php
|
add some abstraction for web responses, so far minimal and not that used, requires discussion, conflicts and reverts %)
|
2006-08-12 23:03:53 +00:00 |
|
WebStart.php
|
Detect PHP 5.0.x 64-bit bug and abort in WebStart.php; too many things break
|
2006-12-17 13:40:28 +00:00 |
|
Wiki.php
|
Use Title::newMainPage() in various places instead of calling
|
2006-12-03 00:22:14 +00:00 |
|
WikiError.php
|
Completing code housekeeping stuff for rest of includes/ directory: removing unused local vars, removing unused globals, replacing extract() where simple to do, declaring output arrays before calling preg_match(), and so forth.
|
2006-11-29 11:43:58 +00:00 |
|
Xml.php
|
* someone forgot to declare a method static
|
2006-12-14 20:47:19 +00:00 |
|
XmlFunctions.php
|
|
|
|
ZhClient.php
|
Code housekeeping stuff (and barring any stuff-ups on my behalf, there should be no changes in behaviour whatsoever after this) -
|
2006-11-23 08:25:56 +00:00 |
|
ZhConversion.php
|
|
|