undefined variable

This commit is contained in:
Marc Delisle
2004-06-10 16:03:03 +00:00
parent edf1b10063
commit f776451297
2 changed files with 3 additions and 1 deletions

View File

@@ -12,6 +12,8 @@ $Source$
TODO: for mysqli TODO: for mysqli
* left.php: undefined variable
2004-06-09 Alexander M. Turek <me@derrabus.de> 2004-06-09 Alexander M. Turek <me@derrabus.de>
### 2.5.7 released from MAINT_2_5 branch. ### 2.5.7 released from MAINT_2_5 branch.

View File

@@ -408,7 +408,7 @@ echo "\n";
<a class="item" href="main.php?<?php echo PMA_generate_common_url(); ?>"><span class="heada"><b><?php echo $strHome; ?></b></span></a> <a class="item" href="main.php?<?php echo PMA_generate_common_url(); ?>"><span class="heada"><b><?php echo $strHome; ?></b></span></a>
<?php <?php
// Logout for advanced authentication // Logout for advanced authentication
if ($cfg['Server']['auth_type'] != 'config') { if (isset($cfg['Server']['auth_type']) && $cfg['Server']['auth_type'] != 'config') {
?> ?>
- <a class="item" href="index.php?<?php echo PMA_generate_common_url(); ?>&amp;old_usr=<?php echo urlencode($PHP_AUTH_USER); ?>" target="_parent"><span class="heada"><b><?php echo $strLogout; ?></b></span></a> - <a class="item" href="index.php?<?php echo PMA_generate_common_url(); ?>&amp;old_usr=<?php echo urlencode($PHP_AUTH_USER); ?>" target="_parent"><span class="heada"><b><?php echo $strLogout; ?></b></span></a>
<?php <?php