The branch, master has been updated via a8a63246efe931924c5cd91b93bae0c6bbcc18e3 (commit) from 464a4159314e9de3fc8d43ba33b4869d9e657a92 (commit)
- Log ----------------------------------------------------------------- commit a8a63246efe931924c5cd91b93bae0c6bbcc18e3 Author: Madhura Jayaratne madhura.cj@gmail.com Date: Thu Sep 15 23:37:21 2011 +0530
Revert changes made by 464a4159314e9de3fc8d43ba33b4869d9e657a92 and a similar instance.
-----------------------------------------------------------------------
Summary of changes: db_operations.php | 27 ++++++++++++++++++++++----- 1 files changed, 22 insertions(+), 5 deletions(-)
diff --git a/db_operations.php b/db_operations.php index 6c7df59..512c894 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)
hooks/post-receive