X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FProfile%2FPage%2FListings.php;h=0cec9a36ba272ca4e67bd44e3ce9744c3305e722;hb=d7f0cce659038cea4833903bf0bbc78b7e0c65d7;hp=c521848e1cf74eacd51148fe9f20241bc815ece2;hpb=6f4ad200d1c99a1205b297638a3dcedb09ad3e6e;p=civicrm-core.git diff --git a/CRM/Profile/Page/Listings.php b/CRM/Profile/Page/Listings.php index c521848e1c..0cec9a36ba 100644 --- a/CRM/Profile/Page/Listings.php +++ b/CRM/Profile/Page/Listings.php @@ -17,7 +17,7 @@ /** * This implements the profile page for all contacts. It uses a selector - * object to do the actual dispay. The fields displayd are controlled by + * object to do the actual display. The fields displayed are controlled by * the admin. */ class CRM_Profile_Page_Listings extends CRM_Core_Page { @@ -281,7 +281,7 @@ class CRM_Profile_Page_Listings extends CRM_Core_Page { $ufgroupDAO = new CRM_Core_DAO_UFGroup(); $ufgroupDAO->id = $this->_gid; if (!$ufgroupDAO->find(TRUE)) { - CRM_Core_Error::statusBounce('Unable to find matching UF Group'); + CRM_Core_Error::statusBounce(ts('Unable to find matching UF Group')); } } @@ -449,11 +449,14 @@ class CRM_Profile_Page_Listings extends CRM_Core_Page { } /** - * @param string $suffix + * Check template file exists. * - * @return null|string + * @param string|null $suffix + * + * @return string|null + * Template file path, else null */ - public function checkTemplateFileExists($suffix = '') { + public function checkTemplateFileExists($suffix = NULL) { if ($this->_gid) { $templateFile = "CRM/Profile/Page/{$this->_gid}/Listings.{$suffix}tpl"; $template = CRM_Core_Page::getTemplate();