This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| commit a4f33443bdcf471633ac1641c5f3ad65082f7038 | |
| Exclude links to pages in configurable namespaces | |
| Allow to customize which namespaces shouldn't get affected by | |
| DisplayTitle when linking to them. | |
| This would allow excluding the User: namespace, for example, to prevent | |
| abuse. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/HookHandler/SchemaChangesHandler.php b/src/HookHandler/SchemaChangesHandler.php | |
| index 6e6575d5..9708eeb2 100644 | |
| --- a/src/HookHandler/SchemaChangesHandler.php | |
| +++ b/src/HookHandler/SchemaChangesHandler.php | |
| @@ -241,11 +241,11 @@ class SchemaChangesHandler implements LoadExtensionSchemaUpdatesHook, CheckUserQ | |
| 'cu_private_event', | |
| "$base/$dbType/patch-cu_private_event-def.sql" | |
| ); | |
| - $updater->dropExtensionField( | |
| - 'cu_log', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/includes/Hooks/Handlers/SchemaChangesHandler.php b/includes/Hooks/Handlers/SchemaChangesHandler.php | |
| index 7be91ca1..50ce16dd 100644 | |
| --- a/includes/Hooks/Handlers/SchemaChangesHandler.php | |
| +++ b/includes/Hooks/Handlers/SchemaChangesHandler.php | |
| @@ -182,17 +182,17 @@ class SchemaChangesHandler implements LoadExtensionSchemaUpdatesHook { | |
| MigrateActorsAF::class, | |
| ] ); | |
| - // 1.43 | |
| - $updater->addExtensionUpdate( [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/src/Hook/UpdateTables.php b/src/Hook/UpdateTables.php | |
| index 1795d93..5881af8 100644 | |
| --- a/src/Hook/UpdateTables.php | |
| +++ b/src/Hook/UpdateTables.php | |
| @@ -52,7 +52,8 @@ class UpdateTables implements LoadExtensionSchemaUpdatesHook { | |
| 'runMaintenance', | |
| UpdateForMultipleDevicesSupport::class, | |
| ] ); | |
| - $updater->addExtensionUpdateOnVirtualDomain( [ 'virtual-oathauth', 'dropTable', 'oathauth_users' ] ); | |
| + // Skip drop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/SimpleCaptcha/SimpleCaptcha.php b/SimpleCaptcha/SimpleCaptcha.php | |
| index 10d42088..610a6bac 100644 | |
| --- a/SimpleCaptcha/SimpleCaptcha.php | |
| +++ b/SimpleCaptcha/SimpleCaptcha.php | |
| @@ -1072,13 +1072,13 @@ class SimpleCaptcha { | |
| $info = $this->retrieveCaptcha( $index ); | |
| if ( $info ) { | |
| if ( $this->keyMatch( $word, $info ) ) { | |
| - $this->log( "passed" ); | |
| + $this->log( "Captcha $index passed with word $word ({$info['question']})" ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/extension.json b/extension.json | |
| index e5780d22..2d72f6b3 100644 | |
| --- a/extension.json | |
| +++ b/extension.json | |
| @@ -127,10 +127,12 @@ | |
| "FileDeleteComplete": "main", | |
| "FileUndeleteComplete": "main", | |
| "FileUpload": "main", | |
| + "GetPreferences": "main", | |
| "ImageOpenShowImageInlineBefore": "main", |
NewerOlder