From 4539198e238e02fe7f8c665678391c68939791fd Mon Sep 17 00:00:00 2001 From: Ravish Nair Date: Thu, 30 May 2013 14:35:58 +0530 Subject: [PATCH] -- Minor fix for incorrect ClassName --- CRM/Core/PseudoConstant.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/PseudoConstant.php b/CRM/Core/PseudoConstant.php index 0605503667..c4fcf73097 100644 --- a/CRM/Core/PseudoConstant.php +++ b/CRM/Core/PseudoConstant.php @@ -293,7 +293,7 @@ class CRM_Core_PseudoConstant { $output = self::$cache[$cacheKey]; } else { - $daoName = CRM_Core_AllCoreTables::getClassForTable($pseudoconstant['table']); + $daoName = CRM_Core_DAO_AllCoreTables::getClassForTable($pseudoconstant['table']); if (!class_exists($daoName)) { return FALSE; } -- 2.25.1