Skip to content

Commit 1a114a9

Browse files
SuiteCRM 7.14.5 Release
1 parent ea756b1 commit 1a114a9

File tree

4 files changed

+53
-49
lines changed

4 files changed

+53
-49
lines changed

Api/V8/Service/ModuleService.php

+4
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,10 @@ public function updateRecord(UpdateModuleParams $params, Request $request)
432432
throw new AccessDeniedException();
433433
}
434434

435+
if (isset($attributes['deleted']) && isTrue($attributes['deleted']) && !$bean->ACLAccess('delete')) {
436+
throw new AccessDeniedException();
437+
}
438+
435439
$this->setRecordUpdateParams($bean, $attributes);
436440
$fileUpload = $this->processAttributes($bean, $attributes);
437441
$bean->save();

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img width="180px" height="41px" src="https://suitecrm.com/wp-content/uploads/2017/12/logo.png" align="right" />
33
</a>
44

5-
# SuiteCRM 7.14.4
5+
# SuiteCRM 7.14.5
66

77
[![Build Status](https://travis-ci.org/salesagility/SuiteCRM.svg?branch=hotfix)](https://travis-ci.org/salesagility/SuiteCRM)
88
[![codecov](https://codecov.io/gh/salesagility/SuiteCRM/branch/hotfix/graph/badge.svg)](https://codecov.io/gh/salesagility/SuiteCRM/branch/hotfix)

0 commit comments

Comments
 (0)