fix comments on function getNotePrivacyHidden
authorTimotheus Pokorra <timotheus.pokorra@solidcharity.com>
Thu, 1 Jun 2023 15:16:31 +0000 (17:16 +0200)
committerTimotheus Pokorra <timotheus.pokorra@solidcharity.com>
Thu, 1 Jun 2023 15:16:31 +0000 (17:16 +0200)
the comments are the wrong way around. this is not about if notes should
be displayed, but if they should be hidden.

related to https://lab.civicrm.org/dev/core/-/issues/4329

CRM/Core/BAO/Note.php

index 02be74e66a899b1e2c6503a3bed3265092bf0f13..6595969b94c9c72e7939c6db3e5ed1f91cf27579 100644 (file)
@@ -43,13 +43,13 @@ class CRM_Core_BAO_Note extends CRM_Core_DAO_Note implements \Civi\Core\HookInte
   }
 
   /**
-   * Given a note id, decide if the note should be displayed based on privacy setting
+   * Given a note id, decide if the note should be hidden based on privacy setting
    *
    * @param object $note
    *   Either the id of the note to retrieve, or the CRM_Core_DAO_Note object itself.
    *
    * @return bool
-   *   TRUE if the note should be displayed, otherwise FALSE
+   *   TRUE if the note should be hidden, otherwise FALSE
    *
    */
   public static function getNotePrivacyHidden($note) {