From: Sam Reed Date: Wed, 22 Dec 2010 16:16:12 +0000 (+0000) Subject: Followup r78023, change usage of $style to $styles, not introduced in this revision... X-Git-Tag: 1.31.0-rc.0~33186 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=e15ffb8001a942d5f2025776c71388a5eba6abfe;p=lhc%2Fweb%2Fwiklou.git Followup r78023, change usage of $style to $styles, not introduced in this revision, but was moved by it --- 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();