Skip to content
This repository was archived by the owner on Sep 10, 2021. It is now read-only.

Commit 9d381a1

Browse files
author
mgrauer
committed
Correct model field in tracker notification
1 parent 63caa8c commit 9d381a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/tracker/Notification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public function sendEmail($params)
175175
$body .= '<b>Producer:</b> <a href="'.$fullUrl.'/'.$this->moduleName.'/producer/view?producerId='.$producerDao->getKey(
176176
).'">'.htmlspecialchars($producerDao->getDisplayName(), ENT_QUOTES, 'UTF-8').'</a><br/>';
177177
$body .= '<b>Trend:</b> <a href="'.$fullUrl.'/'.$this->moduleName.'/trend/view?trendId='.$trendDao->getKey(
178-
).'">'.htmlspecialchars($trendDao->getMetric()->getDisplayName(), ENT_QUOTES, 'UTF-8').'</a><br/>';
178+
).'">'.htmlspecialchars($trendDao->getDisplayName(), ENT_QUOTES, 'UTF-8').'</a><br/>';
179179
$body .= '<b>Value:</b> '.htmlspecialchars($scalar['value'], ENT_QUOTES, 'UTF-8');
180180

181181
Zend_Registry::get('notifier')->callback(

0 commit comments

Comments
 (0)