X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FBAO%2FWebsite.php;h=ff08619fd1167c1996e17673ffdb7afd79b01d6d;hb=af321125666c7444accea956adaad22395fcd4c9;hp=050502c14a06a627791d074da0cbce864a2ea9e8;hpb=0ec03e9fabc23b802ac80cb68c44b5abaf7f8585;p=civicrm-core.git diff --git a/CRM/Core/BAO/Website.php b/CRM/Core/BAO/Website.php index 050502c14a..ff08619fd1 100644 --- a/CRM/Core/BAO/Website.php +++ b/CRM/Core/BAO/Website.php @@ -1,7 +1,7 @@ contact_id = $params['contact_id']; @@ -159,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; } @@ -197,4 +196,3 @@ SELECT id, website_type_id return $websites; } } -