X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FBAO%2FWebsite.php;h=ff08619fd1167c1996e17673ffdb7afd79b01d6d;hb=af321125666c7444accea956adaad22395fcd4c9;hp=0b2d83f27db454cb5b0d2e2048b5ca117e25e7b6;hpb=771e2548641c460d0f7a244ad0aefb05c703b478;p=civicrm-core.git diff --git a/CRM/Core/BAO/Website.php b/CRM/Core/BAO/Website.php index 0b2d83f27d..ff08619fd1 100644 --- a/CRM/Core/BAO/Website.php +++ b/CRM/Core/BAO/Website.php @@ -1,7 +1,7 @@ contact_id = $params['contact_id']; @@ -157,15 +158,15 @@ class CRM_Core_BAO_Website extends CRM_Core_DAO_Website { /** * Get all the websites for a specified contact_id * - * @param int $id the contact id + * @param int $id + * The contact id. * * @param bool $updateBlankLocInfo * * @return array the array of website details - * @access public * @static */ - static function allWebsites($id, $updateBlankLocInfo = FALSE) { + public static function allWebsites($id, $updateBlankLocInfo = FALSE) { if (!$id) { return NULL; } @@ -195,4 +196,3 @@ SELECT id, website_type_id return $websites; } } -