On line 32 of the sphere.module file there is a typo when making a function call.
Currently it calls
drupal_add_css(druapl_get_path('module', 'sphere') .'/sphere.css');
It should be
drupal_add_css(drupal_get_path('module', 'sphere') .'/sphere.css');
Comments
Comment #1
incidentist commentedD'oh! Fixed in the new version (1.1).