Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2012-04-11 17:34:27 +0400
committerMichal Čihař <mcihar@suse.cz>2012-04-11 17:34:27 +0400
commit5d54482c66f3471bd9950fecaa43de911208edca (patch)
treee19a16a247e7672c4c99df7472878a865ecf367b /server_engines.php
parentcfee08c7810950d89bc2f8e2a5558d7ac7b4cce9 (diff)
Drop $cfg['MainPageIconic'].
Diffstat (limited to 'server_engines.php')
-rw-r--r--server_engines.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/server_engines.php b/server_engines.php
index 81d0bdbcbe..19e484a0bb 100644
--- a/server_engines.php
+++ b/server_engines.php
@@ -33,7 +33,7 @@ if (empty($_REQUEST['engine'])
* Displays the sub-page heading
*/
echo '<h2>' . "\n"
- . ($GLOBALS['cfg']['MainPageIconic'] ? PMA_getImage('b_engine.png') : '')
+ . PMA_getImage('b_engine.png')
. "\n" . __('Storage Engines') . "\n"
. '</h2>' . "\n";
@@ -82,7 +82,7 @@ if (empty($_REQUEST['engine'])
$engine_plugin = PMA_StorageEngine::getEngine($_REQUEST['engine']);
echo '<h2>' . "\n"
- . ($GLOBALS['cfg']['MainPageIconic'] ? PMA_getImage('b_engine.png') : '')
+ . PMA_getImage('b_engine.png')
. ' ' . htmlspecialchars($engine_plugin->getTitle()) . "\n"
. ' ' . PMA_showMySQLDocu('', $engine_plugin->getMysqlHelpPage()) . "\n"
. '</h2>' . "\n\n";