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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2011-09-21 13:14:23 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-09-21 13:14:23 +0400
commite42539a817a504e8367fb09fec3c0b06e035f3bc (patch)
tree2002ef5bfb03c4d1c38389a5d68e6c10941acfb8 /db_structure.php
parent2e7a8c9eead022e0713704b471af3a0d7d908063 (diff)
Use PMA_getIcon()
Diffstat (limited to 'db_structure.php')
-rw-r--r--db_structure.php10
1 files changed, 2 insertions, 8 deletions
diff --git a/db_structure.php b/db_structure.php
index b46fe297b4..3926eaef82 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -607,16 +607,10 @@ PMA_listNavigator(
/* Printable view of a table */
echo '<p>';
echo '<a href="db_printview.php?' . $url_query . '">';
-if ($cfg['PropertiesIconic']) {
- echo '<img class="icon ic_b_print" src="themes/dot.gif" alt="" />';
-}
-echo __('Print view') . '</a> ';
+echo PMA_getIcon('b_print.png', __('Print view'), true) . '</a>';
echo '<a href="./db_datadict.php?' . $url_query . '">';
-if ($cfg['PropertiesIconic']) {
- echo '<img class="icon ic_b_tblanalyse" src="themes/dot.gif" alt="" />';
-}
-echo __('Data Dictionary') . '</a>';
+echo PMA_getIcon('b_tblanalyse.png', __('Data Dictionary'), true) . '</a>';
echo '</p>';
if (empty($db_is_information_schema)) {