Welcome to the beta release of phpMyAdmin 3.0.0. This version supports
various features of MySQL 5.1, the Maria and PBXT storage engines and
SweKey hardware authentication. The 3.0 series requires PHP 5.2+ and
MySQL 5.0+.
The release notes and download info are available on
http://phpmyadmin.net.
Marc Delisle, for the team.
A few changes to PMA code
patch at http://trac.nq.pl/pma/browser/trunk/patches/pma_dev.patch
==================================================================
most changes are obvious
I changed only_db to an array as internally it makes no diffrence to PMA
and it's easier for me to handle variables that have only one type. I
think the only
place where this change matters is _checkOnlyDatabase() in
List_Database.class.php (fix also in patch)
import.lib.php
==============
PMA_importRunQuery()
> unused $timeout_passed in global
> $cfg mentioned two times in global
export.php
==========
$onfly_compression = $GLOBALS['cfg']['CompressOnFly'] && ($compression
== 'gzip' | $compression == 'bzip');
$onfly_compression = $GLOBALS['cfg']['CompressOnFly'] && ($compression
== 'gzip' || $compression == 'bzip');
> use the logic OR operator, there's no need for binary operations here
> I can't find where "on the fly" compression is enabled, is it used at all?
tbl_properties.inc.php
======================
$hint = '<p>' .
sprintf($strMIME_transformation_note,
'<a href="transformation_overview.php?'
. PMA_generate_common_url($db, $table) . '" target="_blank">',
'</a>') . '</p>';
> <p> isn't allowed inside of <li>
Config.class.php
================
PMA_Config::getThemeUniqueValue()
reading pma_fontsize cookie may produce a notice when it isn't set,
add isset check
Piotr
Welcome to the alpha release of phpMyAdmin 3.0.0. This version supports
various features of MySQL 5.1, the Maria and PBXT storage engines and
SweKey hardware authentication. The 3.0 series requires PHP 5.2+ and
MySQL 5.0+.
The release notes and download info are available on
http://phpmyadmin.net.
Marc Delisle, for the team.
Hi,
The current state of 3.0 is quite encouraging. I suggest a round of
testing this summer, followed by -alpha early August, -beta in late
August, -rc1 in mid-September ... and we'll see depending on the feedback.
Marc