diff --git a/gulliver/methods/errors/error403.php b/gulliver/methods/errors/error403.php
index 3e28fff65..9c76fa9ef 100644
--- a/gulliver/methods/errors/error403.php
+++ b/gulliver/methods/errors/error403.php
@@ -75,7 +75,7 @@
- Privacy Statement | Security Statement | Terms of Service | Commercial License | Contact Us | RSS + Privacy Statement | Security Statement | Terms of Service | Commercial License | Contact Us | RSS © Copyright 2000 - 2012 Colosa, Inc. www.colosa.com
diff --git a/gulliver/methods/errors/error404.php b/gulliver/methods/errors/error404.php index 6150baeb0..640956a70 100644 --- a/gulliver/methods/errors/error404.php +++ b/gulliver/methods/errors/error404.php @@ -75,7 +75,7 @@
- Privacy Statement | Security Statement | Terms of Service | Commercial License | Contact Us | RSS + Privacy Statement | Security Statement | Terms of Service | Commercial License | Contact Us | RSS © Copyright 2000 - 2012 Colosa, Inc. www.colosa.com
diff --git a/workflow/engine/methods/cases/casesStartPage_Ajax.php b/workflow/engine/methods/cases/casesStartPage_Ajax.php index ee794e20d..fe1741776 100755 --- a/workflow/engine/methods/cases/casesStartPage_Ajax.php +++ b/workflow/engine/methods/cases/casesStartPage_Ajax.php @@ -62,7 +62,7 @@ function getProcessList () if (1) { foreach ($processList as $key => $processInfo) { $tempTree['text'] = $key; - $tempTree['id'] = $key; + $tempTree['id'] = preg_replace('([^A-Za-z0-9])', '', $key); $tempTree['cls'] = 'folder'; $tempTree['draggable'] = true; $tempTree['optionType'] = "category"; @@ -79,7 +79,7 @@ function getProcessList () //print_r($processInfo); $tempTreeChild['text'] = $keyChild; //ellipsis ( $keyChild, 50 ); //$tempTree['text']=$key; - $tempTreeChild['id'] = $keyChild; + $tempTreeChild['id'] = preg_replace('([^A-Za-z0-9 ()])', '', $keyChild); $tempTreeChild['draggable'] = true; $tempTreeChild['leaf'] = true; $tempTreeChild['icon'] = '/images/icon.trigger.png'; diff --git a/workflow/engine/templates/pmTables/edit.js b/workflow/engine/templates/pmTables/edit.js index 18c7c138e..0030798a6 100755 --- a/workflow/engine/templates/pmTables/edit.js +++ b/workflow/engine/templates/pmTables/edit.js @@ -162,7 +162,7 @@ Ext.onReady(function(){ allowBlank: true, listeners:{ change: function(f,e){ - this.setValue(this.getValue().toUpperCase()); + this.setValue(this.getValue().replace(/\s/g,'').toUpperCase()); } } }