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:
authorJo Michael <me@mynetx.net>2012-03-18 22:53:43 +0400
committerJo Michael <me@mynetx.net>2012-03-18 22:53:43 +0400
commitc36a9113e0122bf022f823d3db917a855762ecbb (patch)
tree777214ffa9b46d045a0c4e421877b3be28f7e1b3 /tbl_create.php
parent9842f01444204b33f85f803b5a81265ddaaa96cd (diff)
Replaced td[align] with td[class] due to HTML5
Diffstat (limited to 'tbl_create.php')
-rw-r--r--tbl_create.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_create.php b/tbl_create.php
index 39bbea75f7..40b6e5841d 100644
--- a/tbl_create.php
+++ b/tbl_create.php
@@ -269,7 +269,7 @@ if (isset($_REQUEST['do_save_data'])) {
}
$new_table_string = '<tr>' . "\n";
- $new_table_string .= '<td align="center"> <input type="checkbox" id="checkbox_tbl_" name="selected_tbl[]" value="'.htmlspecialchars($table).'" /> </td>' . "\n";
+ $new_table_string .= '<td class="center"> <input type="checkbox" id="checkbox_tbl_" name="selected_tbl[]" value="'.htmlspecialchars($table).'" /> </td>' . "\n";
$new_table_string .= '<th>';
$new_table_string .= '<a href="sql.php' . PMA_generate_common_url($tbl_url_params) . '">'. $table . '</a>';