diff --git a/core/modules/search/search.module b/core/modules/search/search.module
index f567dae..2ab5dd6 100644
--- a/core/modules/search/search.module
+++ b/core/modules/search/search.module
@@ -646,6 +646,7 @@ function search_index($sid, $module, $text) {
               if ($linknid > 0) {
                 $node = db_query('SELECT title, nid, vid FROM {node} WHERE nid = :nid', array(':nid' => $linknid), array('target' => 'slave'))->fetchObject();
                 $link = TRUE;
+                // Do not use $node->label(), $node comes straight from the DB.
                 $linktitle = $node->title;
               }
             }
diff --git a/core/modules/tracker/tracker.pages.inc b/core/modules/tracker/tracker.pages.inc
index 3f9728d..9e7c1c8 100644
--- a/core/modules/tracker/tracker.pages.inc
+++ b/core/modules/tracker/tracker.pages.inc
@@ -70,6 +70,7 @@ function tracker_page($account = NULL, $set_title = FALSE) {
 
       $row = array(
         'type' => check_plain(node_type_get_name($node->type)),
+         // Do not use $node->label(), $node comes straight from the DB.
         'title' => array('data' => l($node->title, 'node/' . $node->nid) . ' ' . theme('mark', array('type' => node_mark($node->nid, $node->changed)))),
         'author' => array('data' => theme('username', array('account' => $node))),
         'replies' => array('class' => array('replies'), 'data' => $comments),
