mirror of
https://github.com/samba-team/samba.git
synced 2025-01-15 23:24:37 +03:00
f8573766bc
loose some of the fixes in the meantime. Andrew Bartlett (This used to be commit 13acff5ed259e7b5859fd2324ea7740b8f9e5fd7)
11 lines
201 B
Plaintext
11 lines
201 B
Plaintext
|
|
/*
|
|
some test ejs code
|
|
*/
|
|
function showArray(name, array) {
|
|
write("<h3>Array: " + name + "</h3>\n");
|
|
for (v in array) {
|
|
write(name + "[" + v + "]=" + array[v] + "<br/>\n");
|
|
}
|
|
}
|