1
0

Specific php session checks, if a session has already been issued.

This commit is contained in:
Garvin Hicking
2009-06-11 12:14:15 +00:00
parent 6f434aa3c0
commit 1943a9b2bb
4 changed files with 8 additions and 5 deletions

View File

@ -60,6 +60,7 @@ function liveSearchInit() {
}
function liveSearchKeyPress(event) {
if (!event || typeof(event) == 'undefined' || typeof(event.keyCode) == 'undefined') return;
if (event.keyCode == 40 ) { //KEY DOWN
highlight = document.getElementById("LSHighlight");
if (!highlight) {