From e15ffb8001a942d5f2025776c71388a5eba6abfe Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Wed, 22 Dec 2010 16:16:12 +0000 Subject: [PATCH] Followup r78023, change usage of $style to $styles, not introduced in this revision, but was moved by it --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index de50c060bd..8fb8be159b 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -2635,7 +2635,7 @@ class OutputPage { $group = $resourceLoader->getModule( $name )->getGroup(); // Modules in groups named "other" or anything different than "user" or "site" will // be placed in the "other" group - $styles[isset( $style[$group] ) ? $group : 'other'][] = $name; + $styles[isset( $styles[$group] ) ? $group : 'other'][] = $name; } // Add tags created using legacy methods $tags = $this->buildCssLinksArray(); -- 2.20.1