2012-12-12 Hirofumi Kosaka <kosaka@rworks.jp>
* godmode/agentes/module_manager_editor.php: Fixed a bug only for the Enterprise version. When 'Remote Configuration' is enabled and you try to create new module, which name includes meta characters, you will get the error "The field name and name in module_name in data configuration are different." Merged from branch 4.x. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7263 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
cba92b1a08
commit
62ce961cbf
|
@ -1,3 +1,13 @@
|
|||
2012-12-12 Hirofumi Kosaka <kosaka@rworks.jp>
|
||||
|
||||
* godmode/agentes/module_manager_editor.php: Fixed a bug only
|
||||
for the Enterprise version. When 'Remote Configuration' is
|
||||
enabled and you try to create new module, which name includes
|
||||
meta characters, you will get the error "The field name and
|
||||
name in module_name in data configuration are different."
|
||||
|
||||
Merged from branch 4.x.
|
||||
|
||||
2012-12-11 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* include/ajax/agent.php
|
||||
|
|
|
@ -471,7 +471,7 @@ $(document).ready (function () {
|
|||
name = $("#text-name").val();
|
||||
remote_config = $("#textarea_configuration_data").val();
|
||||
|
||||
regexp_name = new RegExp('module_name\\s*' + name+"\n");
|
||||
regexp_name = new RegExp('module_name\\s*' + name.replace(/([^0-9A-Za-z_])/g, "\\$1") +"\n");
|
||||
|
||||
regexp_plugin = new RegExp('^module_plugin\\s*');
|
||||
|
||||
|
|
Loading…
Reference in New Issue