Skip to content

Commit

Permalink
Fixed installation issue when tables are not available
Browse files Browse the repository at this point in the history
  • Loading branch information
aschempp committed Jan 3, 2012
1 parent 4d181b5 commit 164a34c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion system/modules/isotope/config/config.php
Expand Up @@ -284,12 +284,17 @@
$GLOBALS['TL_HOOKS']['getSearchablePages'][] = array('IsotopeFrontend', 'addProductsToSearchIndex');
$GLOBALS['TL_HOOKS']['replaceInsertTags'][] = array('IsotopeFrontend', 'replaceIsotopeTags');
$GLOBALS['TL_HOOKS']['generatePage'][] = array('IsotopeFrontend', 'injectMessages');
$GLOBALS['TL_HOOKS']['parseTemplate'][] = array('IsotopeFrontend', 'fixNavigationTrail');
$GLOBALS['TL_HOOKS']['executePreActions'][] = array('ProductTree', 'executePreActions');
$GLOBALS['TL_HOOKS']['executePostActions'][] = array('ProductTree', 'executePostActions');
$GLOBALS['TL_HOOKS']['translateUrlParameters'][] = array('IsotopeFrontend', 'translateProductUrls');
$GLOBALS['ISO_HOOKS']['buttons'][] = array('Isotope', 'defaultButtons');

if (TL_MODE == 'FE')
{
// Do not parse backend templates
$GLOBALS['TL_HOOKS']['parseTemplate'][] = array('IsotopeFrontend', 'fixNavigationTrail');
}


/**
* Checkout surcharge calculation callbacks
Expand Down

0 comments on commit 164a34c

Please sign in to comment.