Skip to content

Commit

Permalink
SuiteCRM 7.14.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
jack7anderson7 committed Oct 2, 2023
1 parent cec86ea commit c43eaa3
Show file tree
Hide file tree
Showing 9 changed files with 64 additions and 61 deletions.
2 changes: 1 addition & 1 deletion README.md
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.0
# SuiteCRM 7.14.1

[![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
4 changes: 2 additions & 2 deletions data/SugarBean.php
Expand Up @@ -2521,12 +2521,12 @@ public function cleanBean()
}

if (isset($def['type']) && ($def['type'] == 'html' || $def['type'] == 'longhtml')) {
$this->$key = htmlentities((string) SugarCleaner::cleanHtml($this->$key, true));
$this->$key = purify_html($this->$key);
} elseif (
(strpos((string) $type, 'char') !== false || strpos((string) $type, 'text') !== false || $type == 'enum') &&
!empty($this->$key)
) {
$this->$key = htmlentities((string) SugarCleaner::cleanHtml($this->$key, true));
$this->$key = purify_html($this->$key);
}
}
}
Expand Down
103 changes: 52 additions & 51 deletions files.md5

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion include/utils.php
Expand Up @@ -2673,7 +2673,9 @@ function purify_html(?string $value): string {
$cleanedValue = '';
}

return $cleanedValue;
$doubleCleanedValue = htmlentities((string) SugarCleaner::cleanHtml($doubleDecoded, true));

return $doubleCleanedValue;
}

function preprocess_param($value)
Expand Down
4 changes: 2 additions & 2 deletions suitecrm_version.php
Expand Up @@ -3,5 +3,5 @@
die('Not A Valid Entry Point');
}

$suitecrm_version = '7.14.0';
$suitecrm_timestamp = '2023-08-29 12:00:00';
$suitecrm_version = '7.14.1';
$suitecrm_timestamp = '2023-10-03 12:00:00';
2 changes: 1 addition & 1 deletion themes/SuiteP/css/Dawn/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion themes/SuiteP/css/Day/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion themes/SuiteP/css/Dusk/style.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion themes/SuiteP/css/Night/style.css

Large diffs are not rendered by default.

0 comments on commit c43eaa3

Please sign in to comment.