From ec5ab0a26bbc38f020cd2884b9691077bd3255ae Mon Sep 17 00:00:00 2001 From: james Date: Thu, 29 Oct 2009 17:07:56 +0000 Subject: [PATCH] Fix a few other popup windows for IE --- admin/tours_assignments.php | 2 +- admin/user_list.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/tours_assignments.php b/admin/tours_assignments.php index a8f16d55..db125345 100644 --- a/admin/tours_assignments.php +++ b/admin/tours_assignments.php @@ -103,7 +103,7 @@ function openinfo(id) else currentid=document.forms.tours["studentlist[]"].options[document.forms.tours["studentlist[]"].selectedIndex].value; - infowindow = window.open("tours_assignments.php?action=info&id="+currentid,"Student Tour Rank Information","location=no,menubar=no,directories=no,toolbar=no,width=770,height=300,scrollbars=yes"); + infowindow = window.open("tours_assignments.php?action=info&id="+currentid,"StudentTourRankInformation","location=no,menubar=no,directories=no,toolbar=no,width=770,height=300,scrollbars=yes"); return false; } diff --git a/admin/user_list.php b/admin/user_list.php index b85e39a4..4c0dc4c4 100644 --- a/admin/user_list.php +++ b/admin/user_list.php @@ -56,7 +56,7 @@ function openeditor(id) { if(id) currentid=id; - window.open("user_editor_window.php?id="+currentid,"User Editor","location=no,menubar=no,directories=no,toolbar=no,width=1000,height=640,scrollbars=yes"); + window.open("user_editor_window.php?id="+currentid,"UserEditor","location=no,menubar=no,directories=no,toolbar=no,width=1000,height=640,scrollbars=yes"); return false; } @@ -89,7 +89,7 @@ function neweditor() { var username = document.forms.newuser.new_email.value; var usertype = document.forms.newuser.new_type.value; - window.open("user_editor_window.php?type="+usertype+"&username="+username,"User Editor","location=no,menubar=no,directories=no,toolbar=no,width=770,height=500,scrollbars=yes"); + window.open("user_editor_window.php?type="+usertype+"&username="+username,"UserEditor","location=no,menubar=no,directories=no,toolbar=no,width=770,height=500,scrollbars=yes"); document.forms.newuser.new_email.value = ""; return false; }