Show login form in top frame.

This commit is contained in:
Michal Čihař
2004-05-19 12:57:17 +00:00
parent cf1f6a9465
commit 7ddc4f69bb
2 changed files with 11 additions and 0 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2004-05-14 Michal Čihař <michal@cihar.com>
* libraries/auth/cookie.auth.lib.php: Show login form in top frame.
2004-05-16 Alexander M. Turek <me@derrabus.de>
* db_details.php, db_details_structure.php, sql.php, tbl_indexes.php,
tbl_properties_structure.php, tbl_query_box.php,

View File

@@ -201,6 +201,14 @@ input.textfield {font-family: <?php echo $right_font_family; ?>; font-size: <?ph
.warning {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #FF0000}
//-->
</style>
<script language="javascript" type="text/javascript">
<!--
// show login form in top frame
if (top != self) {
window.top.location.href=location;
}
//-->
</script>
</head>
<body bgcolor="<?php echo $cfg['RightBgColor']; ?>">