diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-05-31 04:40:10 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:21 -0500 |
commit | d9c199a9f8f9a03529e2eb0e1ab87c0d51c31714 (patch) | |
tree | 02c03fa555d6b307cac5621397833b87a8f027dd /swat/scripting | |
parent | a05bd5e9d654b97e1a2128a5048b68b7efd9ccd7 (diff) | |
download | samba-d9c199a9f8f9a03529e2eb0e1ab87c0d51c31714.tar.gz samba-d9c199a9f8f9a03529e2eb0e1ab87c0d51c31714.tar.bz2 samba-d9c199a9f8f9a03529e2eb0e1ab87c0d51c31714.zip |
r7136: fixed a typo
(This used to be commit d0374ffc87da225dfe8e57d9c4ae859b288fc913)
Diffstat (limited to 'swat/scripting')
-rw-r--r-- | swat/scripting/common.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swat/scripting/common.js b/swat/scripting/common.js index d7252b3bf9..4fc3884db6 100644 --- a/swat/scripting/common.js +++ b/swat/scripting/common.js @@ -160,7 +160,7 @@ function simple_table(v) { attribute */ function multi_table(array, header) { - if (elcount(v) == 0) { + if (elcount(array) == 0) { return; } write("<table class=\"data\">\n"); |