In the first 2 lines of theme_datatable()

  $header &= $variables['header'];
  $attributes &= $variables['attributes'];

Should be

  $header =& $variables['header'];
  $attributes =& $variables['attributes'];

This problem doesn't exist in the stable version 7.x-1.1.

Comments

duellj’s picture

Status: Active » Fixed

Good catch, thanks! Fixed in dev branch

Status: Fixed » Closed (fixed)

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

  • duellj committed cda740b on 7.x-1.x, 7.x-2.x
    Issue #1919346 - Fixes syntax error in theme_datatables().