In node edit form,the following error is displaying

Deprecated function: Function split() is deprecated in cck_time_field_widget_form() (line 131 of sites\all\modules\cck_time\cck_time.module).

Comments

dhakshinait’s picture

Just replace

list($hour, $minute) = split(':', $items[0]['value']);

with

list($hour, $minute) = explode(':', $items[0]['value']);

in line 131 of cck_time.module file

Everett Zufelt’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.