Page Chapter 10. The Form API, Page 181
Wed, 07/18/2007 - 7:36pm — Katie Barnes
Location on the page:
top code sample
Error:
$form['weight'] = array('#type' => 'weight',
Correction:
$form['weight'] = array(
'#type' => 'weight',
Description of the Error:
For consistency purposes and readability the property setting should start on the following line as it does elsewhere throughout the book.
