From 00f8d61b8b8b2114cf3dec8ae7ce4a10787e0f1e Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Thu, 14 Jun 2018 16:48:33 -0700 Subject: [PATCH] (dev/core#183) Deprecate CRM_Core_DAO::createTempTableName() We're changing the naming formula, but some use-cases may rely on the old naming formula. Anything based on the old formula needs to be examined. --- CRM/Core/DAO.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CRM/Core/DAO.php b/CRM/Core/DAO.php index 584f187e09..4d7a6f83fe 100644 --- a/CRM/Core/DAO.php +++ b/CRM/Core/DAO.php @@ -2018,6 +2018,8 @@ SELECT contact_id * @param null $string * * @return string + * @deprecated + * @see CRM_Utils_SQL_TempTable */ public static function createTempTableName($prefix = 'civicrm', $addRandomString = TRUE, $string = NULL) { $tableName = $prefix . "_temp"; -- 2.25.1