Merge remote-tracking branch 'origin/QA_4_0' into QA_4_0

This commit is contained in:
Weblate 2013-04-14 14:46:38 +02:00
commit a352413772
2 changed files with 2 additions and 1 deletions

View File

@ -104,6 +104,7 @@ underscore
- bug #3865 Using like operator on each backslash needs 4 backslash protection
- bug #3860 Displayed git revision info is not set
- bug #3871 Check referential integrity broken across databases
- bug #3874 [export] No preselected option when exporting table
3.5.9.0 (not yet released)

View File

@ -187,7 +187,7 @@ if (strlen($table) && ! isset($num_tables) && ! PMA_Table::isMerge($db, $table))
echo '</li>';
echo '<li>';
echo '<input type="radio" name="allrows" value="1" id="radio_allrows_1"';
if (isset($_GET['allrows']) && $_GET['allrows'] == 1) {
if (! isset($_GET['allrows']) || $_GET['allrows'] == 1) {
echo ' checked="checked"';
}
echo '/>';