Set correct variable to avoid attempting sending headers twice.

This commit is contained in:
Michal Čihař
2004-03-22 16:29:34 +00:00
parent 412b4ce6b4
commit cd65e1f844
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2004-03-22 Michal Cihar <michal@cihar.com>
* libraries/auth/config.auth.lib.php: Set correct variable to avoid
attempting sending headers twice.
2004-03-22 Garvin Hicking <pma@supergarv.de>
* lang/german-*: Update

View File

@@ -103,7 +103,7 @@ h1 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo
<br />
<?php
echo "\n";
$is_header_sent = TRUE;
$GLOBALS['is_header_sent'] = TRUE;
echo '<p>' . $GLOBALS['strAccessDeniedExplanation'] . '</p>' . "\n";
PMA_mysqlDie($conn_error, '');