patch #2903400 [bookmarks] Status of bookmark table

This commit is contained in:
Marc Delisle
2009-11-25 10:52:32 +00:00
parent e97be9af7f
commit 53ba44270e
2 changed files with 6 additions and 2 deletions

View File

@@ -6,6 +6,8 @@ $Id$
$HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/ChangeLog $
3.2.5.0 (not yet released) 3.2.5.0 (not yet released)
- patch #2903400 [bookmarks] Status of bookmark table,
thanks to Virsacer - virsacer
3.2.4.0 (not yet released) 3.2.4.0 (not yet released)
- bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status - bug [engines] Innodb_buffer_pool_pages_latched no longer returned in status

View File

@@ -133,14 +133,16 @@ function PMA_printRelationsParamDiagnostic($cfgRelation)
PMA_printDiagMessageForFeature('strColComFeat', 'commwork', $messages, false); PMA_printDiagMessageForFeature('strColComFeat', 'commwork', $messages, false);
PMA_printDiagMessageForFeature('strBookmarkQuery', 'bookmarkwork', $messages, false);
PMA_printDiagMessageForFeature('strMIME_transformation', 'mimework', $messages); PMA_printDiagMessageForFeature('strMIME_transformation', 'mimework', $messages);
if ($cfgRelation['commwork'] && ! $cfgRelation['mimework']) { if ($cfgRelation['commwork'] && ! $cfgRelation['mimework']) {
echo '<tr><td colspan=2 align="left">' . $GLOBALS['strUpdComTab'] . '</td></tr>' . "\n"; echo '<tr><td colspan=2 align="left">' . $GLOBALS['strUpdComTab'] . '</td></tr>' . "\n";
} }
PMA_printDiagMessageForParameter('bookmarktable', isset($cfgRelation['bookmark']), $messages, 'bookmark');
PMA_printDiagMessageForFeature('strBookmarkQuery', 'bookmarkwork', $messages);
PMA_printDiagMessageForParameter('history', isset($cfgRelation['history']), $messages, 'history'); PMA_printDiagMessageForParameter('history', isset($cfgRelation['history']), $messages, 'history');
PMA_printDiagMessageForFeature('strQuerySQLHistory', 'historywork', $messages); PMA_printDiagMessageForFeature('strQuerySQLHistory', 'historywork', $messages);