From 3241a093a52d7595c8bb838d72db32cb7e21528c Mon Sep 17 00:00:00 2001
From: Ingo Renner <ingo.renner@typo3.org>
Date: Wed, 21 Nov 2007 09:39:43 +0000
Subject: [PATCH] fixed interface definition and phpDoc $pid instead of $uid

git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@2743 709f56b5-9817-0410-a4d7-c38de5d9e867
---
 .../interface.t3lib_localrecordlistgettablehook.php           | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/t3lib/interfaces/interface.t3lib_localrecordlistgettablehook.php b/t3lib/interfaces/interface.t3lib_localrecordlistgettablehook.php
index b6f54f40565e..1664b5687e64 100644
--- a/t3lib/interfaces/interface.t3lib_localrecordlistgettablehook.php
+++ b/t3lib/interfaces/interface.t3lib_localrecordlistgettablehook.php
@@ -39,13 +39,13 @@ interface t3lib_localRecordListGetTableHook {
 	 * modifies the DB list query
 	 *
 	 * @param	string		the current database table
-	 * @param	integer		the record's unique ID
+	 * @param	integer		the record's page ID
 	 * @param	string		an additional WHERE clause
 	 * @param	string		comma separated list of selected fields
 	 * @param	localRecordList		parent localRecordList object
 	 * @return	void
 	 */
-	public function getDBlistQuery($table, $uid, &$additionalWhereClause, &$selectedFieldsList, &$parentObject);
+	public function getDBlistQuery($table, $pid, &$additionalWhereClause, &$selectedFieldsList, &$parentObject);
 
 }
 
-- 
GitLab