parent
63bf607a1d
commit
9725d8f625
|
@ -23,21 +23,21 @@
|
||||||
$links[] = $this->qlink(
|
$links[] = $this->qlink(
|
||||||
sprintf('%d created', $run->objects_created),
|
sprintf('%d created', $run->objects_created),
|
||||||
$activityUrl,
|
$activityUrl,
|
||||||
array('action_name' => 'create')
|
array('action' => 'create')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if ($run->objects_modified > 0) {
|
if ($run->objects_modified > 0) {
|
||||||
$links[] = $this->qlink(
|
$links[] = $this->qlink(
|
||||||
sprintf('%d modified', $run->objects_modified),
|
sprintf('%d modified', $run->objects_modified),
|
||||||
$activityUrl,
|
$activityUrl,
|
||||||
array('action_name' => 'modify')
|
array('action' => 'modify')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if ($run->objects_deleted > 0) {
|
if ($run->objects_deleted > 0) {
|
||||||
$links[] = $this->qlink(
|
$links[] = $this->qlink(
|
||||||
sprintf('%d deleted', $run->objects_deleted),
|
sprintf('%d deleted', $run->objects_deleted),
|
||||||
$activityUrl,
|
$activityUrl,
|
||||||
array('action_name' => 'delete')
|
array('action' => 'delete')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue