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 5248990..342aab4 100644 | |
--- a/src/Hook/UpdateTables.php | |
+++ b/src/Hook/UpdateTables.php | |
@@ -47,11 +47,14 @@ class UpdateTables implements LoadExtensionSchemaUpdatesHook { | |
} | |
// 1.41 | |
- $updater->addExtensionUpdate( [ | |
+ // Changed addExtensionUpdate to addExtensionUpdateOnVirtualDomain because T388058 |
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", |
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/WebVideoTranscode/WebVideoTranscodeJob.php b/includes/WebVideoTranscode/WebVideoTranscodeJob.php | |
index 162be036..466f502b 100644 | |
--- a/includes/WebVideoTranscode/WebVideoTranscodeJob.php | |
+++ b/includes/WebVideoTranscode/WebVideoTranscodeJob.php | |
@@ -19,6 +19,7 @@ use MediaWiki\Logger\LoggerFactory; | |
use MediaWiki\MainConfigNames; | |
use MediaWiki\Shell\CommandFactory; | |
use MediaWiki\Shell\Shell; | |
+use MediaWiki\TimedMediaHandler\Handlers\WebMHandler\WebMHandler; | |
use MediaWiki\TimedMediaHandler\HLS\Segmenter; |
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/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php | |
index 82a5b62950e..72239b9c1ba 100644 | |
--- a/includes/installer/MysqlUpdater.php | |
+++ b/includes/installer/MysqlUpdater.php | |
@@ -142,13 +142,13 @@ class MysqlUpdater extends DatabaseUpdater { | |
// 1.41 | |
[ 'addField', 'user', 'user_is_temp', 'patch-user-user_is_temp.sql' ], | |
- [ 'runMaintenance', MigrateRevisionCommentTemp::class ], | |
- [ 'dropTable', 'revision_comment_temp' ], |
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
--- SimpleCaptcha/SimpleCaptcha.php 2024-03-31 11:06:25.800541068 +0200 | |
+++ SimpleCaptcha/SimpleCaptcha.php 2024-06-01 16:01:21.220020956 +0200 | |
@@ -1096,13 +1096,13 @@ | |
$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->clearCaptcha( $index ); | |
$this->captchaSolved = true; |
NewerOlder