bug #1117907
This commit is contained in:
@@ -5,11 +5,14 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$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>
|
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_table_info.php: View detection for
|
||||||
header.inc.php.
|
header.inc.php.
|
||||||
* tbl_properties_links.php:
|
* tbl_properties_links.php: Adjusted tab bar for views.
|
||||||
- Adjusted tab bar for views.
|
|
||||||
|
|
||||||
2005-02-05 Marc Delisle <lem9@users.sourceforge.net>
|
2005-02-05 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_relation.php: removed comments handling (pmadb-style) from relation view
|
* tbl_relation.php: removed comments handling (pmadb-style) from relation view
|
||||||
|
@@ -12,7 +12,7 @@
|
|||||||
// per server so I don't put the server number in the cookie name.
|
// per server so I don't put the server number in the cookie name.
|
||||||
|
|
||||||
if (!isset($_COOKIE['pma_mcrypt_iv'])) {
|
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);
|
$iv = mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_BLOWFISH, MCRYPT_MODE_CBC), MCRYPT_RAND);
|
||||||
setcookie('pma_mcrypt_iv',
|
setcookie('pma_mcrypt_iv',
|
||||||
base64_encode($iv),
|
base64_encode($iv),
|
||||||
|
Reference in New Issue
Block a user