Quote by garfy:
'p' => array('class' => 1, 'id' => 1, 'align' => 1),
'div' => array('class' => 1, 'id' => 1),
'align' => array('class' => 1, 'id' => 1),
Look at this closely. See the difference between the 'p' and the 'div'?
On the left side of the '=>', you list the tag ('p', 'div', ...) and on the right side, you list the tag's attributes ('align', etc.).
"align" is an attribute, not a tag, so it's in the wrong place.
bye, Dirk