From 9998284c7f9769a37b623fc5fac46e844a0a46d1 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Tue, 1 May 2012 14:34:10 +0200 Subject: [PATCH] Fixed a minor JS issue in server.html --- server.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.html b/server.html index 27ea6c20..1d018a48 100644 --- a/server.html +++ b/server.html @@ -909,7 +909,7 @@ settings.settings.config.protocols = [fobj1, fobj2, fobj3]; $tbody = $(''); var tr, i, protocol, - len = settings.settings.config.protocols.length; + len = (settings.settings.config.protocols ? settings.settings.config.protocols.length : 0); // remove old stuff $tbody.html('');