resourceloader: Make 'site.styles' actually in group 'site'
authorTimo Tijhof <krinklemail@gmail.com>
Thu, 25 Aug 2016 20:32:05 +0000 (13:32 -0700)
committerTimo Tijhof <krinklemail@gmail.com>
Thu, 25 Aug 2016 20:39:01 +0000 (13:39 -0700)
commit471adc7ef9c8ed9b052601d25994c2117ea5b7ce
treef24629feb4297a608ae9f9ba848744eb2199c09c
parent3645302f04a6ae793c1f635ccb27e5dd845b80c6
resourceloader: Make 'site.styles' actually in group 'site'

Before 93ed259cf and 7bb7315d4, 'site' and 'site.styles' module were one module
loaded in two parts. One part via the general queue (not in a separate request),
and the other part in the stylesheet queue (in a separate request).

This was achieved by hacking the stylesheet queue handler to hardcode the group
to be 'site' for a module named 'site' (later 'site.styles' in c20a76ee)
eventhough the module as a whole was not actually in that group.

Now that these modules are separated, this hack is no longer needed
and the module can be registered as being in group 'site' properly.

Change-Id: If193f556be211749b115f3808ee46536b578fb22
includes/OutputPage.php
includes/resourceloader/ResourceLoaderSiteStylesModule.php