runSummary: link action, not action_name

fixes #13067
This commit is contained in:
Thomas Gelf 2016-11-08 11:45:29 +01:00
parent 63bf607a1d
commit 9725d8f625
1 changed files with 3 additions and 3 deletions

View File

@ -23,21 +23,21 @@
$links[] = $this->qlink(
sprintf('%d created', $run->objects_created),
$activityUrl,
array('action_name' => 'create')
array('action' => 'create')
);
}
if ($run->objects_modified > 0) {
$links[] = $this->qlink(
sprintf('%d modified', $run->objects_modified),
$activityUrl,
array('action_name' => 'modify')
array('action' => 'modify')
);
}
if ($run->objects_deleted > 0) {
$links[] = $this->qlink(
sprintf('%d deleted', $run->objects_deleted),
$activityUrl,
array('action_name' => 'delete')
array('action' => 'delete')
);
}