- last update
over 1 year ago 2,145 pass - πΈπ°Slovakia poker10
Added a tag for other maintainer review (issue was RTBC, just the test was added).
drupal_page_footer()
normally is called at the end of any page load. However, if someone calls drupal_goto
or sets $form_state['redirect']
, then any classes that are autoloaded or any other thing that normally gets cached in drupal_page_footer()
isn't called. This results _registry_check_code()
not finding the classes in $lookup_cache
and having to re-query registry table. Not a huge performance hit, but in my case, it resulted in 5 or 6 queries for classes on every single form submit.
Perform system caching before redirect.
Needs review
7.0 β°οΈ
Last updated
It is used to alert the framework manager core committer(s) that an issue significantly impacts (or has the potential to impact) multiple subsystems or represents a significant change or addition in architecture or public APIs, and their signoff is needed (see the governance policy draft for more information). If an issue significantly impacts only one subsystem, use Needs subsystem maintainer review instead, and make sure the issue component is set to the correct subsystem.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Added a tag for other maintainer review (issue was RTBC, just the test was added).