This commit is contained in:
Alexander M. Turek
2005-02-07 16:46:02 +00:00
parent f7e636e466
commit 71c0225996
2 changed files with 6 additions and 3 deletions

View File

@@ -5,11 +5,14 @@ phpMyAdmin - Changelog
$Id$
$Source$
2005-06-07 Alexander M. Turek <me@derrabus.de>
* libraries/mcrypt.lib.php: Bug #1117907 ("wrong parameter count" with
php 4.1.x.
2005-02-06 Alexander M. Turek <me@derrabus.de>
* header.inc.php, tbl_properties_table_info.php: View detection for
header.inc.php.
* tbl_properties_links.php:
- Adjusted tab bar for views.
* tbl_properties_links.php: Adjusted tab bar for views.
2005-02-05 Marc Delisle <lem9@users.sourceforge.net>
* tbl_relation.php: removed comments handling (pmadb-style) from relation view

View File

@@ -12,7 +12,7 @@
// per server so I don't put the server number in the cookie name.
if (!isset($_COOKIE['pma_mcrypt_iv'])) {
srand();
srand((double) microtime() * 1000000);
$iv = mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_BLOWFISH, MCRYPT_MODE_CBC), MCRYPT_RAND);
setcookie('pma_mcrypt_iv',
base64_encode($iv),