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...
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | context_get-syntax_fix-1809822-1.patch | 598 bytes | robwilmshurst |
Comments
Comment #1
robwilmshurst commentedHere's the patch.
Comment #2
pvhee commentedGood catch! Committed (sorry, forgot to use git author, but you're credited in the commit message), will release a 1.2 shortly.