Skip to content

Commit

Permalink
SuiteCRM 7.14.4 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
jack7anderson7 committed Jun 7, 2024
1 parent 8212692 commit 504d6f0
Show file tree
Hide file tree
Showing 35 changed files with 364 additions and 1,173 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img width="180px" height="41px" src="https://suitecrm.com/wp-content/uploads/2017/12/logo.png" align="right" />
</a>

# SuiteCRM 7.14.3
# SuiteCRM 7.14.4

[![Build Status](https://travis-ci.org/salesagility/SuiteCRM.svg?branch=hotfix)](https://travis-ci.org/salesagility/SuiteCRM)
[![codecov](https://codecov.io/gh/salesagility/SuiteCRM/branch/hotfix/graph/badge.svg)](https://codecov.io/gh/salesagility/SuiteCRM/branch/hotfix)
Expand Down
44 changes: 26 additions & 18 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions data/SugarBean.php
Original file line number Diff line number Diff line change
Expand Up @@ -2521,12 +2521,12 @@ public function cleanBean()
}

if (isset($def['type']) && ($def['type'] == 'html' || $def['type'] == 'longhtml')) {
$this->$key = purify_html($this->$key);
$this->$key = purify_html($this->$key, ['HTML.ForbiddenElements' => ['iframe' => true]]);
} elseif (
(strpos((string) $type, 'char') !== false || strpos((string) $type, 'text') !== false || $type == 'enum') &&
!empty($this->$key)
) {
$this->$key = purify_html($this->$key);
$this->$key = purify_html($this->$key, ['HTML.ForbiddenElements' => ['iframe' => true]]);
}
}
}
Expand Down
Loading

0 comments on commit 504d6f0

Please sign in to comment.