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-15 22:07:21 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-09-15 22:07:21 +0400
commita8a63246efe931924c5cd91b93bae0c6bbcc18e3 (patch)
tree7d625ae5462b592919ed06a89f8ec19e1bf422b8 /db_operations.php
parent464a4159314e9de3fc8d43ba33b4869d9e657a92 (diff)
Revert changes made by 464a4159314e9de3fc8d43ba33b4869d9e657a92 and a similar instance.
Diffstat (limited to 'db_operations.php')
-rw-r--r--db_operations.php27
1 files changed, 22 insertions, 5 deletions
diff --git a/db_operations.php b/db_operations.php
index 6c7df590f3..512c894c9f 100644
--- a/db_operations.php
+++ b/db_operations.php
@@ -357,7 +357,12 @@ if (!$is_information_schema) {
<?php echo PMA_generate_common_hidden_inputs($db); ?>
<fieldset>
<legend>
- <?php echo PMA_getIcon('b_comment.png', __('Database comment: '), true); ?>
+ <?php
+ if ($cfg['PropertiesIconic']) {
+ echo '<img class="icon ic_b_comment" src="themes/dot.gif" alt="" />';
+ }
+ echo __('Database comment: ');
+ ?>
</legend>
<input type="text" name="comment" class="textfield" size="30"
value="<?php
@@ -395,7 +400,10 @@ if ($db != 'mysql') {
<fieldset>
<legend>
<?php
- echo PMA_getIcon('b_edit.png', __('Rename database to'), true) . ':';
+ if ($cfg['PropertiesIconic']) {
+ echo '<img class="icon ic_b_edit" src="themes/dot.gif" alt="" />';
+ }
+ echo __('Rename database to') . ':';
?>
</legend>
<input id="new_db_name" type="text" name="newname" size="30" class="textfield" value="" />
@@ -418,7 +426,10 @@ if (($is_superuser || $GLOBALS['cfg']['AllowUserDropDatabase'])
<div class="operations_half_width">
<fieldset class="caution">
<legend><?php
-echo PMA_getIcon('b_deltbl.png', __('Remove database'), true);
+if ($cfg['PropertiesIconic']) {
+ echo '<img class="icon ic_b_deltbl" src="themes/dot.gif" alt="" />';
+}
+echo __('Remove database');
?></legend>
<ul>
@@ -461,7 +472,10 @@ echo PMA_getIcon('b_deltbl.png', __('Remove database'), true);
<fieldset>
<legend>
<?php
- echo PMA_getIcon('b_edit.png', __('Copy database to'), true) . ':';
+ if ($cfg['PropertiesIconic']) {
+ echo '<img class="icon ic_b_edit" src="themes/dot.gif" alt="" />';
+ }
+ echo __('Copy database to') . ':';
$drop_clause = 'DROP TABLE / DROP VIEW';
?>
</legend>
@@ -522,7 +536,10 @@ echo PMA_getIcon('b_deltbl.png', __('Remove database'), true);
. PMA_generate_common_hidden_inputs($db, $table)
. '<fieldset>' . "\n"
. ' <legend>';
- echo PMA_getIcon('s_asci.png', __('Collation'), true) . ':'
+ if ($cfg['PropertiesIconic']) {
+ echo '<img class="icon ic_s_asci" src="themes/dot.gif" alt="" />';
+ }
+ echo ' <label for="select_db_collation">' . __('Collation') . ':</label>' . "\n"
. ' </legend>' . "\n"
. PMA_generateCharsetDropdownBox(PMA_CSDROPDOWN_COLLATION,
'db_collation', 'select_db_collation', $db_collation, false, 3)