(dev/core#183) Deprecate CRM_Core_DAO::createTempTableName()
authorTim Otten <totten@civicrm.org>
Thu, 14 Jun 2018 23:48:33 +0000 (16:48 -0700)
committerTim Otten <totten@civicrm.org>
Fri, 15 Jun 2018 00:59:18 +0000 (17:59 -0700)
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

index 584f187e09bbe7681643a6a2f8481b9ad6f00997..4d7a6f83fe03eb0fa3ecceb78e8b72bde81c127a 100644 (file)
@@ -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";