Index: all/modules/contrib-altered/bpv/bpv.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/bpv/bpv.module,v
retrieving revision 1.1
diff -u -r1.1 bpv.module
--- all/modules/contrib-altered/bpv/bpv.module	17 Oct 2007 20:46:23 -0000	1.1
+++ all/modules/contrib-altered/bpv/bpv.module	4 Jan 2009 10:41:01 -0000
@@ -1,8 +1,8 @@
 <?php
 
-function bpv_form_alter($form_id, &$form) {
-   if ($form_id == 'block_admin_display') {
-     $form['#submit']['bpv_block_admin_submit'] = array();
+function bpv_form_alter(&$form, $form_state, $form_id){
+   if ($form_id == 'block_admin_display_form') {
+     $form['#submit'][] = 'bpv_block_admin_submit';
    }
    elseif($form_id == 'block_admin_configure') {
      $form['page_vis_settings']['visibility']['#disabled'] = TRUE;
Index: all/modules/contrib-altered/bpv/bpv.info
===================================================================
RCS file: /cvs/drupal/contributions/modules/bpv/bpv.info,v
retrieving revision 1.1
diff -u -r1.1 bpv.info
--- all/modules/contrib-altered/bpv/bpv.info	17 Oct 2007 20:46:23 -0000	1.1
+++ all/modules/contrib-altered/bpv/bpv.info	4 Jan 2009 10:41:01 -0000
@@ -1,3 +1,4 @@
 ; $Id
 name = Block page visibility
 description = Helper module so developers can define block visibility in a custom function instead of in many textareas on the web.
+core = 6.x
\ No newline at end of file
