Skip to content

Commit

Permalink
Merge branch 'master' of github.com:NETivism/netiCRM
Browse files Browse the repository at this point in the history
  • Loading branch information
jimyhuang committed Jan 8, 2025
2 parents 925da10 + f79d9b3 commit d11561d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Core/BAO/Note.php
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ static function &add(&$params, $ids) {
*/
static function dataExists(&$params) {
// return if no data present
if (!empty($params['note']) && !empty($params['subject'])) {
if (empty($params['note']) && empty($params['subject'])) {
return FALSE;
}
return TRUE;
Expand Down

0 comments on commit d11561d

Please sign in to comment.