mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-25 16:19:00 +01:00
removed not longer necessary double quoting (from time it was a string in a function)
This commit is contained in:
parent
27f266bcd8
commit
7869bd59b0
@ -90,7 +90,7 @@ function getElement(form,pattern)
|
||||
{
|
||||
for (i = 0; i < form.length; i++){
|
||||
if(form.elements[i].name){
|
||||
var found = form.elements[i].name.search("\\\\["+pattern+"\\\\]");
|
||||
var found = form.elements[i].name.search("\\["+pattern+"\\]");
|
||||
if (found != -1){
|
||||
return form.elements[i];
|
||||
}
|
||||
@ -134,7 +134,7 @@ function add_whole_list(list)
|
||||
|
||||
function setOptions(options_str)
|
||||
{
|
||||
var options = options_str.split("\\\\b");
|
||||
var options = options_str.split("\\b");
|
||||
var selbox = document.getElementById("exec[fileas_type]");
|
||||
var i;
|
||||
for (i=0; i < options.length; i++)
|
||||
|
Loading…
Reference in New Issue
Block a user