Closed (duplicate)
Project:
Hierarchical Select
Version:
7.x-3.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
11 Jun 2011 at 15:08 UTC
Updated:
11 Jul 2011 at 17:19 UTC
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
Comment #1
fred0 commentedOn 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'])) {Comment #2
aristeides commentedthanks! works now... :)
Comment #3
wim leersDuplicate of #1071484: Syntax error.