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:
authorRouslan Placella <rouslan@placella.com>2011-09-26 23:54:59 +0400
committerRouslan Placella <rouslan@placella.com>2011-09-26 23:54:59 +0400
commitd17814f463678cec54e6d9f469eb8f273668264e (patch)
tree2fbcfc5eccf8d1bd5301a58524b723afdf180d2f /server_variables.php
parentb1c60c7d19d88c16b6ea591b2219a0793c2d961f (diff)
Replaced use of hard coded images with the sprite-aware PMA_getImage() functions (both PHP and JS).
Diffstat (limited to 'server_variables.php')
-rw-r--r--server_variables.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_variables.php b/server_variables.php
index f09706aaf2..9c37864a2a 100644
--- a/server_variables.php
+++ b/server_variables.php
@@ -95,7 +95,7 @@ require './libraries/server_links.inc.php';
* Displays the sub-page heading
*/
echo '<h2>' . "\n"
- . ($cfg['MainPageIconic'] ? '<img class="icon ic_s_vars" src="themes/dot.gif" alt="" />' : '')
+ . ($cfg['MainPageIconic'] ? PMA_getImage('s_vars.png') : '')
. '' . __('Server variables and settings') . "\n"
. PMA_showMySQLDocu('server_system_variables', 'server_system_variables')
. '</h2>' . "\n";