mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-24 20:01:36 +02: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++){
|
for (i = 0; i < form.length; i++){
|
||||||
if(form.elements[i].name){
|
if(form.elements[i].name){
|
||||||
var found = form.elements[i].name.search("\\\\["+pattern+"\\\\]");
|
var found = form.elements[i].name.search("\\["+pattern+"\\]");
|
||||||
if (found != -1){
|
if (found != -1){
|
||||||
return form.elements[i];
|
return form.elements[i];
|
||||||
}
|
}
|
||||||
@ -134,7 +134,7 @@ function add_whole_list(list)
|
|||||||
|
|
||||||
function setOptions(options_str)
|
function setOptions(options_str)
|
||||||
{
|
{
|
||||||
var options = options_str.split("\\\\b");
|
var options = options_str.split("\\b");
|
||||||
var selbox = document.getElementById("exec[fileas_type]");
|
var selbox = document.getElementById("exec[fileas_type]");
|
||||||
var i;
|
var i;
|
||||||
for (i=0; i < options.length; i++)
|
for (i=0; i < options.length; i++)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user