Index: drupal/modules/views/civicrm/civicrm_handler_filter_contact_type.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_contact_type.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_contact_type.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_contactTypes;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_contactTypes ) {
             civicrm_initialize( );
             require_once 'CRM/Core/SelectValues.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_activity.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_activity.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_activity.inc	(working copy)
@@ -4,6 +4,7 @@
     static $_activityTypes;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_activityTypes ) {
             civicrm_initialize( );
             require_once 'CRM/Core/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_payment_instrument.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_payment_instrument.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_payment_instrument.inc	(working copy)
@@ -14,6 +14,7 @@
     static $_paymentInstrument;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_paymentInstrument ) {
             civicrm_initialize( );
             require_once 'CRM/Contribute/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_location.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_location.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_location.inc	(working copy)
@@ -4,6 +4,7 @@
     static $_locationTypes;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_locationTypes ) {
             civicrm_initialize( );
             require_once 'CRM/Core/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_state.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_state.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_state.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_states;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_states ) {
             civicrm_initialize( );
             require_once 'CRM/Core/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_participant_status.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_participant_status.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_participant_status.inc	(working copy)
@@ -14,6 +14,7 @@
     static $_participant_status;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_participant_status ) {
             civicrm_initialize( );
             require_once 'CRM/Core/OptionGroup.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_membership_type.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_membership_type.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_membership_type.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_membershipType;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_membershipType ) {
             civicrm_initialize( );
             require_once 'CRM/Member/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_gender.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_gender.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_gender.inc	(working copy)
@@ -14,6 +14,7 @@
     static $_gender;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_gender ) {
             civicrm_initialize( );
             require_once 'CRM/Core/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_contribution_type.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_contribution_type.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_contribution_type.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_contributionType;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_contributionType ) {
             civicrm_initialize( );
             require_once 'CRM/Contribute/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_activity_type.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_activity_type.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_activity_type.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_activityType;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_activityType ) {
             civicrm_initialize( );
             require_once 'CRM/Core/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_participant_role.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_participant_role.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_participant_role.inc	(working copy)
@@ -12,6 +12,7 @@
     static $_participant_role;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_participant_role ) {
             civicrm_initialize( );
             require_once 'CRM/Core/OptionGroup.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_activity_status.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_activity_status.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_activity_status.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_activityStatus;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_activityStatus ) {
             civicrm_initialize( );
             require_once 'CRM/Core/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_relationship_type.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_relationship_type.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_relationship_type.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_relationshipType;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_relationshipType ) {
             civicrm_initialize( );
             require_once 'CRM/Core/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_location_type.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_location_type.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_location_type.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_locationTypes;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_locationTypes ) {
             civicrm_initialize( );
             require_once 'CRM/Core/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_membership_status.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_membership_status.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_membership_status.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_membershipStatus;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_membershipStatus ) {
             civicrm_initialize( );
             require_once 'CRM/Member/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_activityType.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_activityType.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_activityType.inc	(working copy)
@@ -1,7 +1,9 @@
 <?php
 
 class civicrm_handler_filter_activityType extends civicrm_handler_filter_option {
+  
     function initialize( ) {
+        parent::construct();
         if ( ! self::$_options ) {
             civicrm_initialize( );
             require_once 'CRM/Core/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_country.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_country.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_country.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_countries;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_countries ) {
             civicrm_initialize( );
             require_once 'CRM/Core/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_contribution_page.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_contribution_page.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_contribution_page.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_contributionPage;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_contributionPage ) {
             civicrm_initialize( );
             require_once 'CRM/Contribute/PseudoConstant.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_event_type.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_event_type.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_event_type.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_event_type;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_event_type ) {
             civicrm_initialize( );
             require_once 'CRM/Core/OptionGroup.php';
Index: drupal/modules/views/civicrm/civicrm_handler_filter_contribution_status.inc
===================================================================
--- drupal/modules/views/civicrm/civicrm_handler_filter_contribution_status.inc	(revision 630)
+++ drupal/modules/views/civicrm/civicrm_handler_filter_contribution_status.inc	(working copy)
@@ -13,6 +13,7 @@
     static $_contributionStatus;
 
     function construct( ) {
+        parent::construct();
         if ( ! self::$_contributionStatus ) {
             civicrm_initialize( );
             require_once 'CRM/Contribute/PseudoConstant.php';

