diff --git a/lib/Drupal/views/Tests/Style/PluginStyleJumpMenuTest.php b/lib/Drupal/views/Tests/Style/PluginStyleJumpMenuTest.php
index 2518a373b6c1f83b635a4e909b7ea4943853dc62..838783d65b912212808985822c3d4890f1dcee7d 100644
--- a/lib/Drupal/views/Tests/Style/PluginStyleJumpMenuTest.php
+++ b/lib/Drupal/views/Tests/Style/PluginStyleJumpMenuTest.php
@@ -31,7 +31,7 @@ public function setUp() {
     $this->nodes['story'][] = $this->drupalCreateNode(array('type' => 'story'));
     $this->nodes['story'][] = $this->drupalCreateNode(array('type' => 'story'));
 
-    $this->nodeTitles = array($this->nodes['page'][0]->title, $this->nodes['page'][1]->title, $this->nodes['story'][0]->title, $this->nodes['story'][1]->title);
+    $this->nodeTitles = array($this->nodes['page'][0]->label(), $this->nodes['page'][1]->label(), $this->nodes['story'][0]->label(), $this->nodes['story'][1]->label());
   }
 
 
diff --git a/lib/Drupal/views/Tests/User/UserTestCase.php b/lib/Drupal/views/Tests/User/UserTestCase.php
index 2d2f9b6f5e3d1516a1335298588e018939a34fa5..3addf52e3887651a031680af3188969d6e9cf769 100644
--- a/lib/Drupal/views/Tests/User/UserTestCase.php
+++ b/lib/Drupal/views/Tests/User/UserTestCase.php
@@ -48,7 +48,7 @@ public function testRelationship() {
     $expected = array();
     for ($i = 0; $i <= 1; $i++) {
       $expected[$i] = array(
-        'node_title' => $this->nodes[$i]->title,
+        'node_title' => $this->nodes[$i]->label(),
         'users_uid' => $this->nodes[$i]->uid,
         'users_name' => $this->users[$i]->name,
       );
diff --git a/lib/Drupal/views/Tests/WizardBasicTest.php b/lib/Drupal/views/Tests/WizardBasicTest.php
index 516df720b15036e2ef7d12a4e118fd34e3fe10c8..7d95aeba62bd4da30f6098a94589b76eca059902 100644
--- a/lib/Drupal/views/Tests/WizardBasicTest.php
+++ b/lib/Drupal/views/Tests/WizardBasicTest.php
@@ -62,8 +62,8 @@ function testViewsWizardAndListing() {
     // it.
     $this->assertUrl($view2['page[path]']);
     $this->assertText($view2['page[title]']);
-    $this->assertText($node1->title);
-    $this->assertText($node2->title);
+    $this->assertText($node1->label());
+    $this->assertText($node2->label());
 
     // Check if we have the feed.
     $this->assertLinkByHref(url($view2['page[feed_properties][path]']));
@@ -72,9 +72,9 @@ function testViewsWizardAndListing() {
     // The feed should have the same title and nodes as the page.
     $this->assertText($view2['page[title]']);
     $this->assertRaw(url('node/' . $node1->nid, array('absolute' => TRUE)));
-    $this->assertText($node1->title);
+    $this->assertText($node1->label());
     $this->assertRaw(url('node/' . $node2->nid, array('absolute' => TRUE)));
-    $this->assertText($node2->title);
+    $this->assertText($node2->label());
 
     // Go back to the views page and check if this view is there.
     $this->drupalGet('admin/structure/views');
@@ -103,8 +103,8 @@ function testViewsWizardAndListing() {
     // Make sure the view only displays the node we expect.
     $this->assertUrl($view3['page[path]']);
     $this->assertText($view3['page[title]']);
-    $this->assertText($node1->title);
-    $this->assertNoText($node2->title);
+    $this->assertText($node1->label());
+    $this->assertNoText($node2->label());
 
     // Go back to the views page and check if this view is there.
     $this->drupalGet('admin/structure/views');
@@ -122,8 +122,8 @@ function testViewsWizardAndListing() {
     // Visit a random page (not the one that displays the view itself) and look
     // for the expected node title in the block.
     $this->drupalGet('user');
-    $this->assertText($node1->title);
-    $this->assertNoText($node2->title);
+    $this->assertText($node1->label());
+    $this->assertNoText($node2->label());
 
     // Check if the export screen works.
     $this->drupalGet('admin/structure/views/view/' . $view3['name'] . '/export');
diff --git a/lib/Drupal/views/Tests/WizardItemsPerPageTest.php b/lib/Drupal/views/Tests/WizardItemsPerPageTest.php
index c6a4fcc27d6bce695e4daf20d2962555c9fe132a..4379d6ef6c5697d25562708cc31e6b23cdcf3bb4 100644
--- a/lib/Drupal/views/Tests/WizardItemsPerPageTest.php
+++ b/lib/Drupal/views/Tests/WizardItemsPerPageTest.php
@@ -57,16 +57,16 @@ function testItemsPerPage() {
     $this->assertUrl($view['page[path]']);
     $this->assertText($view['page[title]']);
     $content = $this->drupalGetContent();
-    $this->assertText($node5->title);
-    $this->assertText($node4->title);
-    $this->assertText($node3->title);
-    $this->assertText($node2->title);
-    $this->assertNoText($node1->title);
-    $this->assertNoText($page_node->title);
-    $pos5 = strpos($content, $node5->title);
-    $pos4 = strpos($content, $node4->title);
-    $pos3 = strpos($content, $node3->title);
-    $pos2 = strpos($content, $node2->title);
+    $this->assertText($node5->label());
+    $this->assertText($node4->label());
+    $this->assertText($node3->label());
+    $this->assertText($node2->label());
+    $this->assertNoText($node1->label());
+    $this->assertNoText($page_node->label());
+    $pos5 = strpos($content, $node5->label());
+    $pos4 = strpos($content, $node4->label());
+    $pos3 = strpos($content, $node3->label());
+    $pos2 = strpos($content, $node2->label());
     $this->assertTrue($pos5 < $pos4 && $pos4 < $pos3 && $pos3 < $pos2, t('The nodes appear in the expected order in the page display.'));
 
     // Put the block into the first sidebar region, visit a page that displays
@@ -79,15 +79,15 @@ function testItemsPerPage() {
     $this->drupalPost('admin/structure/block', $edit, t('Save blocks'));
     $this->drupalGet('user');
     $content = $this->drupalGetContent();
-    $this->assertText($node5->title);
-    $this->assertText($node4->title);
-    $this->assertText($node3->title);
-    $this->assertNoText($node2->title);
-    $this->assertNoText($node1->title);
-    $this->assertNoText($page_node->title);
-    $pos5 = strpos($content, $node5->title);
-    $pos4 = strpos($content, $node4->title);
-    $pos3 = strpos($content, $node3->title);
+    $this->assertText($node5->label());
+    $this->assertText($node4->label());
+    $this->assertText($node3->label());
+    $this->assertNoText($node2->label());
+    $this->assertNoText($node1->label());
+    $this->assertNoText($page_node->label());
+    $pos5 = strpos($content, $node5->label());
+    $pos4 = strpos($content, $node4->label());
+    $pos3 = strpos($content, $node3->label());
     $this->assertTrue($pos5 < $pos4 && $pos4 < $pos3, t('The nodes appear in the expected order in the block display.'));
   }
 }
diff --git a/lib/Drupal/views/Tests/WizardSortingTest.php b/lib/Drupal/views/Tests/WizardSortingTest.php
index 1775988b13c148d1a82bbf6e0c48fa209424d56c..34090ff2fbd1ccab1ca6fa18aedc53c8990a3d46 100644
--- a/lib/Drupal/views/Tests/WizardSortingTest.php
+++ b/lib/Drupal/views/Tests/WizardSortingTest.php
@@ -44,12 +44,12 @@ function testSorting() {
     $this->assertUrl($view1['page[path]']);
     $this->assertText($view1['page[title]']);
     $content = $this->drupalGetContent();
-    $this->assertText($node1->title);
-    $this->assertText($node2->title);
-    $this->assertText($node3->title);
-    $pos1 = strpos($content, $node1->title);
-    $pos2 = strpos($content, $node2->title);
-    $pos3 = strpos($content, $node3->title);
+    $this->assertText($node1->label());
+    $this->assertText($node2->label());
+    $this->assertText($node3->label());
+    $pos1 = strpos($content, $node1->label());
+    $pos2 = strpos($content, $node2->label());
+    $pos3 = strpos($content, $node3->label());
     $this->assertTrue($pos1 < $pos2 && $pos2 < $pos3, t('The nodes appear in the expected order in a view that sorts by oldest first.'));
 
     // Create a view that sorts newest first.
@@ -67,12 +67,12 @@ function testSorting() {
     $this->assertUrl($view2['page[path]']);
     $this->assertText($view2['page[title]']);
     $content = $this->drupalGetContent();
-    $this->assertText($node3->title);
-    $this->assertText($node2->title);
-    $this->assertText($node1->title);
-    $pos3 = strpos($content, $node3->title);
-    $pos2 = strpos($content, $node2->title);
-    $pos1 = strpos($content, $node1->title);
+    $this->assertText($node3->label());
+    $this->assertText($node2->label());
+    $this->assertText($node1->label());
+    $pos3 = strpos($content, $node3->label());
+    $pos2 = strpos($content, $node2->label());
+    $pos1 = strpos($content, $node1->label());
     $this->assertTrue($pos3 < $pos2 && $pos2 < $pos1, t('The nodes appear in the expected order in a view that sorts by newest first.'));
   }
 }
diff --git a/modules/node/views_handler_argument_node_nid.inc b/modules/node/views_handler_argument_node_nid.inc
index b0dbee09667feebeb761fac40f3581dd21047600..d951f88c6d0b45ffe7cd0ef082a059eee6b1a0a1 100644
--- a/modules/node/views_handler_argument_node_nid.inc
+++ b/modules/node/views_handler_argument_node_nid.inc
@@ -15,9 +15,9 @@ class views_handler_argument_node_nid extends views_handler_argument_numeric {
   function title_query() {
     $titles = array();
 
-    $result = db_query("SELECT n.title FROM {node} n WHERE n.nid IN (:nids)", array(':nids' => $this->value));
-    foreach ($result as $term) {
-      $titles[] = check_plain($term->title);
+    $nodes = node_load_multiple($this->value);
+    foreach ($nodes as $node) {
+      $titles[] = check_plain($node->label());
     }
     return $titles;
   }
diff --git a/modules/node/views_handler_argument_node_vid.inc b/modules/node/views_handler_argument_node_vid.inc
index 21532f93d9369839ade0a48bccaa4b3b944bff88..3e684af7d975d12d209842cb015296f00ca282d2 100644
--- a/modules/node/views_handler_argument_node_vid.inc
+++ b/modules/node/views_handler_argument_node_vid.inc
@@ -17,10 +17,20 @@ class views_handler_argument_node_vid extends views_handler_argument_numeric {
   function title_query() {
     $titles = array();
 
-    $result = db_query("SELECT n.title FROM {node_revision} n WHERE n.nid IN (:nids)", array(':nids' => $this->value));
-    foreach ($result as $term) {
-      $titles[] = check_plain($term->title);
+    $results = db_query("SELECT nr.vid, nr.nid, nr.title FROM {node_revision} nr WHERE nr.vid IN (:vids)", array(':vids' => $this->value))->fetchAllAssoc('vid', PDO::FETCH_ASSOC);
+
+    $nids = array();
+    foreach ($results as $result) {
+      $nids[] = $result['nid'];
     }
+
+    $nodes = node_load_multiple(array_unique($nids));
+
+    foreach ($results as $result) {
+      $nodes[$result['nid']]->set('title', $result['title']);
+      $titles[] = check_plain($nodes[$result['nid']]->label());
+    }
+
     return $titles;
   }
 }
diff --git a/modules/node/views_plugin_argument_validate_node.inc b/modules/node/views_plugin_argument_validate_node.inc
index 868a621dcde17a3518f6f71ea32947af7bace222..1463a72c663773df0e71598a06ab50fe478b4f24 100644
--- a/modules/node/views_plugin_argument_validate_node.inc
+++ b/modules/node/views_plugin_argument_validate_node.inc
@@ -96,7 +96,7 @@ function validate_argument($argument) {
         }
 
         // Save the title() handlers some work.
-        $this->argument->validated_title = check_plain($node->title);
+        $this->argument->validated_title = check_plain($node->label());
 
         if (empty($types)) {
           return TRUE;
@@ -115,8 +115,8 @@ function validate_argument($argument) {
         $test = drupal_map_assoc($nids->value);
         $titles = array();
 
-        $result = db_query("SELECT * FROM {node} WHERE nid IN (:nids)", array(':nids' =>  $nids->value));
-        foreach ($result as $node) {
+        $nodes = node_load_multiple($nids->value);
+        foreach ($nodes as $node) {
           if ($types && empty($types[$node->type])) {
             return FALSE;
           }
@@ -127,7 +127,7 @@ function validate_argument($argument) {
             }
           }
 
-          $titles[] = check_plain($node->title);
+          $titles[] = check_plain($node->label());
           unset($test[$node->nid]);
         }
 
diff --git a/modules/search.views.inc b/modules/search.views.inc
index dad84bb7c120c3b2b9be144127690fcfd8144e48..71f8d8a4effa9dfea156dfb92dc44dd57fadb6c5 100644
--- a/modules/search.views.inc
+++ b/modules/search.views.inc
@@ -182,7 +182,7 @@ function template_preprocess_views_view_row_search(&$vars) {
   $node->body .= module_invoke('taxonomy', 'nodeapi', $node, 'update index');
 
   $vars['url'] = url('node/' . $nid);
-  $vars['title'] = check_plain($node->title);
+  $vars['title'] = check_plain($node->label());
 
   $info = array();
   $info['type'] = node_type_get_name($node);
diff --git a/modules/user/views_handler_argument_user_uid.inc b/modules/user/views_handler_argument_user_uid.inc
index 6ab9167d52334b2a465e7faa52c2c2abce826606..c945565b7e195b372e9366042779d858f48904f4 100644
--- a/modules/user/views_handler_argument_user_uid.inc
+++ b/modules/user/views_handler_argument_user_uid.inc
@@ -24,9 +24,9 @@ function title_query() {
 
     $titles = array();
 
-    $result = db_query("SELECT u.name FROM {users} u WHERE u.uid IN (:uids)", array(':uids' => $this->value));
-    foreach ($result as $term) {
-      $titles[] = check_plain($term->name);
+    $users = user_load_multiple($this->value);
+    foreach ($users as $account) {
+      $titles[] = check_plain($account->label());
     }
     return $titles;
   }