diff --git a/CHANGELOG.md b/CHANGELOG.md
index b1a44f6edfc9811d1e85e5afde6f2a920461f83d..e513caf81d925e0b8bb19eb900fc4bea242370c5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,7 @@
 # Version 1.25 (not yet released)
 
+* Fix for #68: contact search actions did not work after upgrading to 5.32.2
+
 # Version 1.24.1
 
 * Fixed regression bug when only one activity data source is present.
diff --git a/CRM/Contact/Controller/DataProcessorContactSearch.php b/CRM/Contact/Controller/DataProcessorContactSearch.php
index ee55c4f40d5d95ee59525e22e03b20865295b5a7..e290f03033ab5848e8421607290ad090bcee695e 100644
--- a/CRM/Contact/Controller/DataProcessorContactSearch.php
+++ b/CRM/Contact/Controller/DataProcessorContactSearch.php
@@ -42,6 +42,7 @@ class CRM_Contact_Controller_DataProcessorContactSearch extends CRM_Core_Control
 
     // create and instantiate the pages
     $this->addPages($this->_stateMachine, $action);
+    $this->set('entity', 'Contact');
 
     // add all the actions
     $this->addActions();