Firstly, thanks for a great module!

Small thing: Drupal coding standards, http://drupal.org/coding-standards#naming, require class declaration and use should be in UpperCamelCase.

Some places where this applies, in statspro.inc the declaration belongs beginning with upper case, i.e.:

class Statspro {
}

and usage, when creating a new object of type Statspro, e.g.:

function statspro_cron() {
  require_once drupal_get_path('module', 'statspro') . '/statspro.inc';

  $statspro = new Statspro();

Comments

rsevero’s picture

Assigned: Unassigned » rsevero
Category: bug » task
Status: Active » Fixed

Status: Fixed » Closed (fixed)

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