Closed (fixed)
Project:
Conditional Fields
Version:
7.x-3.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
14 May 2011 at 14:33 UTC
Updated:
28 May 2011 at 18:11 UTC
Hi,
There is a spelling error on line 996 of conditional_fields.module which causes the script to fail.
PHP Fatal error: Call to undefined function druapal_strtolower() in /opt/bitnami/apps/drupal/htdocs/sites/all/modules/condition
al_fields/conditional_fields.module on line 996
You need to change:
'!state' => druapl_strtolower($states[$options['state']]),
to
'!state' => drupal_strtolower($states[$options['state']]),
I don't have permissions (or the experience) to upload a patch, so I hope that someone can fix this for everyone.
Comments
Comment #1
peterpoe commentedDruapl ha 40000 results on Google.
Fixed, thanks!