Skip to content

Commit d9ea039

Browse files
committed
Change search populate base task (#1615)
Update search:populate base to arBaseTask instead of sfBaseTask.
1 parent c2d954f commit d9ea039

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

lib/task/search/arPopulateTask.class.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,11 @@
2020
/**
2121
* Populate search index.
2222
*/
23-
class arSearchPopulateTask extends sfBaseTask
23+
class arSearchPopulateTask extends arBaseTask
2424
{
2525
public function execute($arguments = [], $options = [])
2626
{
27-
sfContext::createInstance($this->configuration);
28-
sfConfig::add(QubitSetting::getSettingsArray());
27+
parent::execute($arguments, $options);
2928

3029
// If show-types flag set, show types available to index
3130
if (!empty($options['show-types'])) {

0 commit comments

Comments
 (0)