diff --git a/module/VuFind/src/VuFind/Db/Table/Search.php b/module/VuFind/src/VuFind/Db/Table/Search.php index 63f8cccc8ba974d507d36b8318596d3e389a242a..d3a1f75ab79253f5b653b352b160e232af5d6c41 100644 --- a/module/VuFind/src/VuFind/Db/Table/Search.php +++ b/module/VuFind/src/VuFind/Db/Table/Search.php @@ -73,7 +73,7 @@ class Search extends Gateway } $eventFeature = new Feature\EventFeature(); $eventFeature->getEventManager()->attach( - Feature\EventFeature::EVENT_PRE_INITIALIZE, [$this, 'onPreInsert'] + Feature\EventFeature::EVENT_PRE_INITIALIZE, [$this, 'onPreInit'] ); $this->featureSet->addFeature($eventFeature); } @@ -91,7 +91,7 @@ class Search extends Gateway * * @return void */ - public function onPreInsert($event) + public function onPreInit($event) { $driver = $event->getTarget()->getAdapter()->getDriver(); $statement = $driver->createStatement();