From 72a9987b823c5ef8d41f86e748fcb99cd6615095 Mon Sep 17 00:00:00 2001 From: Jennifer Hodgdon <yahgrp@poplarware.com> Date: Wed, 18 Jul 2012 06:29:51 -0700 Subject: [PATCH] Issue #1683836 by mjonesdinero, lyricnz: Fix database topic sample code so it is consistent --- includes/database/database.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/database/database.inc b/includes/database/database.inc index e1df3272053e..5bcae67a37f9 100644 --- a/includes/database/database.inc +++ b/includes/database/database.inc @@ -41,7 +41,7 @@ * $result = db_query_range('SELECT n.nid, n.title, n.created * FROM {node} n WHERE n.uid = :uid', 0, 10, array(':uid' => $uid)); * foreach ($result as $record) { - * // Perform operations on $node->title, etc. here. + * // Perform operations on $record->title, etc. here. * } * @endcode * Curly braces are used around "node" to provide table prefixing via -- GitLab