Bsitu has uploaded a new change for review. https://gerrit.wikimedia.org/r/96074
Change subject: Fix some incorrect autoload definition ...................................................................... Fix some incorrect autoload definition Change-Id: Idcdb33b90c6cf82b214373c9f6f3ebf9d3e4b549 --- M Flow.php 1 file changed, 2 insertions(+), 1 deletion(-) git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Flow refs/changes/74/96074/1 diff --git a/Flow.php b/Flow.php index a9607de..5aee376 100755 --- a/Flow.php +++ b/Flow.php @@ -100,7 +100,7 @@ $wgAutoloadClasses['Flow\Data\Index'] = $dir . 'includes/Data/ObjectManager.php'; $wgAutoloadClasses['Flow\Data\UniqueFeatureIndex'] = $dir . 'includes/Data/ObjectManager.php'; $wgAutoloadClasses['Flow\Data\TopKIndex'] = $dir . 'includes/Data/ObjectManager.php'; -$wgAutoloadClasses['Flow\Data\TopicHistoryIndex'] = $dir . 'includes/Data/ObjectManager.php'; +$wgAutoloadClasses['Flow\Data\TopicHistoryIndex'] = $dir . 'includes/Data/RevisionStorage.php'; $wgAutoloadClasses['Flow\Data\BoardHistoryStorage'] = $dir . 'includes/Data/BoardHistoryStorage.php'; $wgAutoloadClasses['Flow\Data\BoardHistoryIndex'] = $dir . 'includes/Data/BoardHistoryStorage.php'; $wgAutoloadClasses['Flow\Data\ObjectStorage'] = $dir . 'includes/Data/ObjectManager.php'; @@ -118,6 +118,7 @@ $wgAutoloadClasses['Flow\Data\RecentChanges'] = $dir . 'includes/Data/RecentChanges.php'; $wgAutoloadClasses['Flow\Data\PostRevisionRecentChanges'] = $dir . 'includes/Data/RecentChanges.php'; $wgAutoloadClasses['Flow\Data\HeaderRecentChanges'] = $dir . 'includes/Data/RecentChanges.php'; +$wgAutoloadClasses['Flow\Data\Merger'] = $dir . 'includes/Data/RevisionStorage.php'; $wgAutoloadClasses['Flow\RecentChanges\Formatter'] = $dir . 'includes/RecentChanges/Formatter.php'; $wgAutoloadClasses['Flow\Log\Logger'] = $dir . 'includes/Log/Logger.php'; $wgAutoloadClasses['Flow\Log\Formatter'] = $dir . 'includes/Log/Formatter.php'; -- To view, visit https://gerrit.wikimedia.org/r/96074 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: Idcdb33b90c6cf82b214373c9f6f3ebf9d3e4b549 Gerrit-PatchSet: 1 Gerrit-Project: mediawiki/extensions/Flow Gerrit-Branch: master Gerrit-Owner: Bsitu <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
