FIX subsites not activating after recent subsite session changes

This commit is contained in:
Hamish Friedlander 2013-09-17 14:33:39 +12:00
parent 21a963d398
commit b75e243276
1 changed files with 4 additions and 8 deletions

View File

@ -31,14 +31,10 @@ class SearchVariantSubsites extends SearchVariant {
} }
function activateState($state) { function activateState($state) {
if (Controller::has_curr()) { // We always just set the $_GET variable rather than store in Session - this always works, has highest priority
Subsite::changeSubsite($state); // in Subsite::currentSubsiteID() and doesn't persist unlike Subsite::changeSubsite
} $_GET['SubsiteID'] = $state;
else { Permission::flush_permission_cache();
// TODO: This is a nasty hack - calling Subsite::changeSubsite after request ends
// throws error because no current controller to access session on
$_GET['SubsiteID'] = $state;
}
} }
function alterDefinition($base, $index) { function alterDefinition($base, $index) {