Just installed D7 using the commerce installation profile by ryan (found here using SQLite during the installation. When I try to enable the hierarchical select module all I get is a blank screen and nothing gets logged on admin/reports/dblog. Any ideas what might be happening here?

Comments

fred0’s picture

On line 1643 of hierarchal_select.module there is an extraneous ( before the isset operator:

if (($first_case || $second_case || $third_case) && (isset($special_items) && !count($special_items['none'])) {

Delete the ( so that line 1643 reads:
if (($first_case || $second_case || $third_case) && isset($special_items) && !count($special_items['none'])) {

aristeides’s picture

thanks! works now... :)

wim leers’s picture

Status: Active » Closed (duplicate)