function block_box_form_validate in Drupal 5
File
- modules/
block/ block.module, line 506 - Controls the boxes that are displayed around the main content.
Code
function block_box_form_validate($form_id, $form_values) {
if (empty($form_values['info']) || db_num_rows(db_query("SELECT info FROM {boxes} WHERE info = '%s'", $form_values['info']))) {
form_set_error('info', t('Please ensure that each block description is unique.'));
}
}