Merged in release/3.2 (pull request #5488)
Release/3.2 Approved-by: Paula Quispe
This commit is contained in:
@@ -324,7 +324,7 @@ class PMDashlet extends DashletInstance implements DashletInterface
|
||||
}
|
||||
}
|
||||
foreach ($dashletsInstances as $key => $field) {
|
||||
$dashletsInstances[$key]['DAS_TITLE'] = $field['DAS_TITLE'] . '</span><span style="float:right; font: bold;" id="'. $field['DAS_INS_UID'] .'">';
|
||||
$dashletsInstances[$key]['DAS_TITLE'] = htmlentities($field['DAS_TITLE'], ENT_QUOTES, 'UTF-8') . '</span><span style="float:right; font: bold;" id="'. $field['DAS_INS_UID'] .'">';
|
||||
}
|
||||
// Check for role assigments
|
||||
// ToDo: Next release
|
||||
|
||||
@@ -769,7 +769,7 @@ class FilesManager
|
||||
if (is_file($f)) {
|
||||
$arrayProcessFilesData = $this->getFileManagerUid($f);
|
||||
|
||||
if (is_null($arrayProcessFilesData["PRF_UID"])) {
|
||||
if (empty($arrayProcessFilesData["PRF_UID"])) {
|
||||
rename($dir . PATH_SEP . $file, $dir . PATH_SEP . $file . ".tmp");
|
||||
|
||||
$arrayData = array(
|
||||
|
||||
@@ -185,10 +185,10 @@ Ext.onReady(function(){
|
||||
}
|
||||
});
|
||||
|
||||
function formatLineWrap(value){
|
||||
str = '<div class="title-dashboard-text">'+value+'</div>';
|
||||
return str;
|
||||
}
|
||||
function formatLineWrap(value) {
|
||||
var str = '<div class="title-dashboard-text">' + Ext.util.Format.htmlEncode(value) + '</div>';
|
||||
return str;
|
||||
}
|
||||
|
||||
cmodel = new Ext.grid.ColumnModel({
|
||||
defaults: {
|
||||
|
||||
Reference in New Issue
Block a user