2013-09-05 Miguel de Dios <miguel.dedios@artica.es>

* godmode/agentes/module_manager_editor_plugin.php,
	include/javascript/pandora_modules.js: fixed the double apply
	entities in the plugin components.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8745 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-09-05 12:34:03 +00:00
parent 0f04a5693f
commit 4a020f2624
3 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,9 @@
2013-09-05 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/module_manager_editor_plugin.php,
include/javascript/pandora_modules.js: fixed the double apply
entities in the plugin components.
2013-09-05 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_filemanager.php: fixed PHP notice when this

View File

@ -547,7 +547,7 @@ function add_macro_field(macro, row_model_id) {
// Change the carriage returns by html returns <br> in help
var macro_help = macro['help'].replace(/&#x0d;/g,"<br>");
var macro_macro = macro['macro'];
var macro_value = macro['value'];
var macro_value = $('<div />').html(macro['value']).text();;
var row_id = row_model_id + macro_macro;