removed status frame

This commit is contained in:
Roland Gruber 2003-04-26 13:30:36 +00:00
parent be3035e34f
commit f2368fccd0
4 changed files with 4 additions and 5 deletions

View File

@ -106,7 +106,7 @@ for ($i = 0; $i < sizeof($info); $i++) { // ignore last entry in array which is
echo("<tr class=\"grouplist\" onMouseOver=\"group_over(this, '" . $info[$i]["dn"] . "')\"" .
" onMouseOut=\"group_out(this, '" . $info[$i]["dn"] . "')\"" .
" onClick=\"group_click(this, '" . $info[$i]["dn"] . "')\"" .
" onDblClick=parent.frames[2].location.href=\"../account.php?type=group&DN='" . $info[$i]["dn"] . "'\">" .
" onDblClick=parent.frames[1].location.href=\"../account.php?type=group&DN='" . $info[$i]["dn"] . "'\">" .
" <td height=22><input onClick=\"group_click(this, '" . $info[$i]["dn"] . "')\" type=\"checkbox\" name=\"" . $info[$i]["dn"] . "\"></td>" .
" <td align='center'><a href=\"../account.php?type=group&DN='" . $info[$i]["dn"] . "'\">" . _("Edit") . "</a></td>");
for ($k = 0; $k < sizeof($attr_array); $k++) {

View File

@ -89,7 +89,7 @@ for ($i = 0; $i < sizeof($info); $i++) {
echo("<tr class=\"hostlist\" onMouseOver=\"host_over(this, '" . $info[$i]["dn"] . "')\"" .
" onMouseOut=\"host_out(this, '" . $info[$i]["dn"] . "')\"" .
" onClick=\"host_click(this, '" . $info[$i]["dn"] . "')\"" .
" onDblClick=parent.frames[2].location.href=\"../account.php?type=host&DN='" . $info[$i]["dn"] . "'\">" .
" onDblClick=parent.frames[1].location.href=\"../account.php?type=host&DN='" . $info[$i]["dn"] . "'\">" .
" <td height=22><input onClick=\"host_click(this, '" . $info[$i]["dn"] . "')\" type=\"checkbox\" name=\"" . $info[$i]["dn"] . "\"></td>" .
" <td align='center'><a href=\"../account.php?type=host&DN='" . $info[$i]["dn"] . "'\">" . _("Edit") . "</a></td>");
for ($k = 0; $k < sizeof($attr_array); $k++) {

View File

@ -87,7 +87,7 @@ for ($i = 0; $i < sizeof($info); $i++) { // ignore last entry in array which is
echo("<tr class=\"userlist\" onMouseOver=\"user_over(this, '" . $info[$i]["dn"] . "')\"" .
" onMouseOut=\"user_out(this, '" . $info[$i]["dn"] . "')\"" .
" onClick=\"user_click(this, '" . $info[$i]["dn"] . "')\"" .
" onDblClick=parent.frames[2].location.href=\"../account.php?type=user&DN='" . $info[$i]["dn"] . "'\">" .
" onDblClick=parent.frames[1].location.href=\"../account.php?type=user&DN='" . $info[$i]["dn"] . "'\">" .
" <td height=22><input onClick=\"user_click(this, '" . $info[$i]["dn"] . "')\" type=\"checkbox\" name=\"" . $info[$i]["dn"] . "\"></td>" .
" <td align='center'><a href=\"../account.php?type=user&DN='" . $info[$i]["dn"] . "'\">" . _("Edit") . "</a></td>");
for ($k = 0; $k < sizeof($attr_array); $k++) {

View File

@ -28,9 +28,8 @@ echo ("<head>\n");
echo ("<title>LDAP Account Manager</title>\n");
echo ("<link rel=\"stylesheet\" type=\"text/css\" href=\"../style/layout.css\" />");
echo ("</head>\n");
echo ("<frameset rows=\"130,100,*\">\n");
echo ("<frameset rows=\"130,*\">\n");
echo ("<frame src=\"./main_header.php\" name=\"head\" frameborder=\"0\" scrolling=\"no\">\n");
echo ("<frame src=\"../templates/status.php\" name=\"status\" frameborder=\"0\" scrolling=\"yes\">\n");
echo ("<frame src=\"./lists/listusers.php\" name=\"mainpart\" frameborder=\"0\" scrolling=\"yes\">\n");
echo ("<noframes>\n");
echo ("This page requires a browser that can show frames!\n");