Skip to content

Commit

Permalink
fwr: wrong parameter sent
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://kelev.kaltura.com/usr/local/kalsource/backend/server/trunk/core@100259 6b8eccd3-e8c5-4e7d-8186-e12b5326b719
  • Loading branch information
hila committed Jun 20, 2013
1 parent ec6f392 commit 138d503
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ public static function getType()
return KalturaBatchJobType::INDEX_TAGS;
}

protected static function reIndexTags (KalturaBatchJob $job)
protected function reIndexTags (KalturaBatchJob $job)
{
KalturaLog::info("Re-indexing tags according to privacy contexts");
$tagPlugin = KalturaTagSearchClientPlugin::get($this->kClient);
$this->impersonate($job->partnerId);
try
{
$tagPlugin->tag->indexCategoryEntryTags($job->data->changedCategoryId, $job->data->deletedPrivacyContexts, $job->data->changedCategoryId);
$tagPlugin->tag->indexCategoryEntryTags($job->data->changedCategoryId, $job->data->deletedPrivacyContexts, $job->data->addedPrivacyContexts);
}
catch (Exception $e)
{
Expand Down

0 comments on commit 138d503

Please sign in to comment.