diff options
| author | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-09 16:54:14 -0400 |
|---|---|---|
| committer | Alexander Pickering <alexandermpickering@gmail.com> | 2016-05-09 16:54:14 -0400 |
| commit | c4be228668ef37a397a4219deccc685750c493f9 (patch) | |
| tree | 57d82a117550650ddf914d2ec4f53a8e11219a2e /ws2a | |
| parent | 3daa5e663aa02ee9d3d553c6b80081cfde76fec4 (diff) | |
| download | webpage-c4be228668ef37a397a4219deccc685750c493f9.tar.gz webpage-c4be228668ef37a397a4219deccc685750c493f9.tar.bz2 webpage-c4be228668ef37a397a4219deccc685750c493f9.zip | |
Fixed bug with variable names in bugvew.js
Diffstat (limited to 'ws2a')
| -rw-r--r-- | ws2a/bugview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ws2a/bugview.js b/ws2a/bugview.js index cbf3db0..aa4fd31 100644 --- a/ws2a/bugview.js +++ b/ws2a/bugview.js @@ -37,7 +37,7 @@ function loadLastBugs() { } }; var query = getQueryStrings(); - var bugnum = qs["id"]; + var bugnum = query["id"]; xhttp.open("GET", "/cgi-bin/showbug.cgi?id="+bugnum, true); xhttp.send(); } |
