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_binlog.php
parentb1c60c7d19d88c16b6ea591b2219a0793c2d961f (diff)
Replaced use of hard coded images with the sprite-aware PMA_getImage() functions (both PHP and JS).
Diffstat (limited to 'server_binlog.php')
-rw-r--r--server_binlog.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/server_binlog.php b/server_binlog.php
index e3ac8f45de..8e7a316c6c 100644
--- a/server_binlog.php
+++ b/server_binlog.php
@@ -73,7 +73,7 @@ if (empty($_REQUEST['dontlimitchars'])) {
* Displays the sub-page heading
*/
echo '<h2>' . "\n"
- . ($GLOBALS['cfg']['MainPageIconic'] ? '<img src="themes/dot.gif" class="icon ic_s_tbl" alt="" />' : '')
+ . ($GLOBALS['cfg']['MainPageIconic'] ? PMA_getImage('s_tbl.png') : '')
. ' ' . __('Binary log') . "\n"
. '</h2>' . "\n";