BUG 11083 "La descripcion de las tablas no muestra..." SOLVED

- La descripcion de las tablas no muestra etiquetas html.
- Problema resuelto, se ha codificado los tags html para su correcta visualizacion.
* Available from version ProcessMaker-2.0.47 (2.5.1)
This commit is contained in:
Luis Fernando Saisa Lopez
2013-04-05 20:55:24 +00:00
parent 1fd6da7bb0
commit 5e044ff9da

View File

@@ -275,9 +275,11 @@ Ext.onReady(function(){
break;
}
}
return r.get('ADD_TAB_TAG') ? '<span style="font-size:9px; color:green">'+tag+':</span> '+ v : v;
}});
v = Ext.util.Format.htmlEncode(v);
return r.get("ADD_TAB_TAG") ? "<span style = \"font-size:9px; color:green\">" + tag + ":</span> "+ v : v;
}});
cmodelColumns.push({header: _('ID_TABLE_TYPE'), dataIndex: 'PRO_UID', width: 120, align:'left', renderer: function(v,p,r){
color = r.get('PRO_UID') ? 'blue' : 'green';
value = r.get('PRO_UID') ? _('ID_REPORT_TABLE') : _('ID_PMTABLE');