Page Chapter 10. The Form API, Page 165
Sat, 11/17/2007 - 8:24am — NikLP
Location on the page:
1st Paragraph
Error:
if (!in_array($element['#value'], $allowed_flavors) {
Correction:
if (!in_array($element['#value'], $allowed_flavors)) {
Description of the Error:
Code error, missing right bracket.
