Chapter 3. Hooks, Actions, and Triggers, Page 48
Wed, 11/05/2008 - 6:14pm — jvandyk
Location on the page:
bottom
Chapter:
3. Hooks, Actions, and Triggers
Error:
array_merge($info['user_block_user_action']['hooks']['comment'], array('insert'));
Correction:
array_unique(array_merge($info['user_block_user_action']['hooks']['comment'], array('insert')));
Description of the Error:
array_merge() appends values instead of combining them when keys are numeric, as they are implicitly in the above array.
