]> git.joonet.de Git - adminer.git/commitdiff
Link collations help
authorJakub Vrana <jakub@vrana.cz>
Fri, 19 Jul 2013 23:29:20 +0000 (16:29 -0700)
committerJakub Vrana <jakub@vrana.cz>
Fri, 19 Jul 2013 23:29:20 +0000 (16:29 -0700)
adminer/database.inc.php

index de02637fda9f64440e31370ae9eae154037a4b39..c77a67d0e76a1eaec27592405d765b2bbb56c4ed 100644 (file)
@@ -60,7 +60,7 @@ if ($_POST) {
 echo ($_POST["add_x"] || strpos($name, "\n")
        ? '<textarea id="name" name="name" rows="10" cols="40">' . h($name) . '</textarea><br>'
        : '<input name="name" id="name" value="' . h($name) . '" maxlength="64" autocapitalize="off">'
-) . "\n" . ($collations ? html_select("collation", array("" => "(" . lang('collation') . ")") + $collations, $row["collation"]) : "");
+) . "\n" . ($collations ? html_select("collation", array("" => "(" . lang('collation') . ")") + $collations, $row["collation"]) . doc_link("charset-charsets.html") : "");
 ?>
 <script type='text/javascript'>focus(document.getElementById('name'));</script>
 <input type="submit" value="<?php echo lang('Save'); ?>">