Fatal error: Call to undefined function _storm_date_to_gsmtimestamp() in storm/stormtask/stormtask.module on line 624
I believe it shouldn't have the s in.
stormtask.module
function _stormtask_beforesave(&$node) {
...
if (is_array($node->datebegin)){
$node->datebegin = _storm_date_to_gsmtimestamp($node->datebegin);
}
...
Comments
Comment #1
GreyHawk commentedThis is also mentioned over here; I'm just completing the xref cycle/circle. :)
...what "s" are you referring to, btw? I didn't see an out of place one in the example code you provided...?
_____________________
UPDATE
_____________________
I went back to the item I'd referenced above, and found that jurgenhaas located the same segment of code and removed the "s" from _gsm to resolve the issue.
I replicated the solution, and it worked -- you're right, there's a bad "s" in there. If you pull that and save, the error will go away and you'll be able to save a task w/o a WSOD.
Thanks!
Comment #2
Magnity commentedThanks to all who have reported this - the issue is fixed, marking as a duplicate of the previously mentioned #530660: White screen when adding a task which was posted first.