Closed (fixed)
Project:
CCK Time
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
16 Dec 2011 at 10:34 UTC
Updated:
30 Dec 2011 at 13:00 UTC
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
Comment #1
dhakshinait commentedJust replace
list($hour, $minute) = split(':', $items[0]['value']);with
list($hour, $minute) = explode(':', $items[0]['value']);in line 131 of cck_time.module file
Comment #2
Everett Zufelt commentedCommitted to http://drupalcode.org/project/cck_time.git/commit/d9a975e
Thanks