Upgrading to 7.x-1.1 is impossible as a syntax error is thrown.

Line 71 is missing a closing bracket:
if(isset($get[$combo[0]) && $get[$combo[0]] == $combo[1]) {

Should be:
if(isset($get[$combo[0]]) && $get[$combo[0]] == $combo[1]) {

Patch to follow...

Comments

robwilmshurst’s picture

Status: Active » Needs review
StatusFileSize
new598 bytes

Here's the patch.

pvhee’s picture

Status: Needs review » Fixed

Good catch! Committed (sorry, forgot to use git author, but you're credited in the commit message), will release a 1.2 shortly.

Status: Fixed » Closed (fixed)

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