Merged in bugfix/PMCORE-548 (pull request #7301)

PMCORE-548

Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
Andrea Adamczyk
2020-04-02 15:23:54 +00:00
committed by Julio Cesar Laura Avendaño
4 changed files with 331 additions and 1 deletions

View File

@@ -76,7 +76,7 @@ switch ($actionAjax) {
&&
(
$appMessageArray[$index]['DEL_INDEX'] == 0
|| in_array($appMessageArray[$index]['DEL_INDEX'], $delIndex)
|| in_array($appMessageArray[$index]['DEL_INDEX'], $delIndex) || empty($respMess)
)
) {
//Define the label with translation

View File

@@ -0,0 +1,12 @@
<?php
namespace ProcessMaker\Model;
use Illuminate\Database\Eloquent\Model;
class ObjectPermission extends Model
{
protected $table = "OBJECT_PERMISSION";
protected $primaryKey = 'OP_UID';
public $timestamps = false;
}