bug 833790

This commit is contained in:
Marc Delisle
2003-12-04 21:27:00 +00:00
parent 19bc06f37e
commit 3389aabe13
2 changed files with 10 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ $Source$
* lang/estonian: Updated, thanks to Alvar Soome (finsoft). * lang/estonian: Updated, thanks to Alvar Soome (finsoft).
* libraries/transformations/text_plain__dateformat.inc.php: * libraries/transformations/text_plain__dateformat.inc.php:
patch 845690: show real data before transformation patch 845690: show real data before transformation
* left.php: bug 833790: put a workaround in place
2003-12-04 Garvin Hicking <grinch@supergarv.de> 2003-12-04 Garvin Hicking <grinch@supergarv.de>
* browse_foreigner.php, mult_submits.inc.php, tbl_change.php, * browse_foreigner.php, mult_submits.inc.php, tbl_change.php,

View File

@@ -31,7 +31,15 @@ if ($cfg['OBGzip']) {
} }
} }
PMA_checkParameters(array('hash')); // This check had been put here to avoid revealing the full path
// of the phpMyAdmin directory in case this script is called
// directly. But some users report a "Missing hash" message and
// I cannot reproduce it, so let's define $hash to a dummy value
// and hope some other clue will surface, to sort this bug.
//PMA_checkParameters(array('hash'));
if (!isset($hash)) {
$hash='';
}
require_once('./libraries/bookmark.lib.php'); require_once('./libraries/bookmark.lib.php');
require_once('./libraries/relation.lib.php'); require_once('./libraries/relation.lib.php');