Skip to content

Commit

Permalink
Merge branch 'QA_4_4'
Browse files Browse the repository at this point in the history
  • Loading branch information
madhuracj committed Mar 19, 2015
2 parents 31d6a28 + a9220d8 commit 14d5a7b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -78,6 +78,7 @@ explanation
- bug #4807 Breaks when sorting by multiple columns while using UNION
- bug #4798 Missing column when exporting in sql
- bug #4810 Broken find and replace
- bug #4804 Undefined Index after export schema

4.3.12.0 (2015-03-14)
- bug #4746 Right-aligned columns have left-aligned header
Expand Down
24 changes: 10 additions & 14 deletions libraries/navigation/NavigationHeader.class.php
Expand Up @@ -176,20 +176,16 @@ private function _links()
false,
'documentation'
);
if ($showIcon) {
$retval .= PMA_Util::showMySQLDocu('', true);
}
if ($showText) {
// PMA_showMySQLDocu always spits out an icon,
// we just replace it with some perl regexp.
$link = preg_replace(
'/<img[^>]+>/i',
__('Documentation'),
PMA_Util::showMySQLDocu('', true)
);
$retval .= $link;
$retval .= '<br />';
}
$retval .= PMA_Util::getNavigationLink(
PMA_Util::getMySQLDocuURL('', ''),
$showText,
__('Documentation'),
$showIcon,
'b_sqlhelp.png',
'',
false,
'mysql_doc'
);
$retval .= PMA_Util::getNavigationLink(
'#',
$showText,
Expand Down
2 changes: 1 addition & 1 deletion libraries/plugins/schema/pdf/Pdf_Relation_Schema.class.php
Expand Up @@ -584,7 +584,7 @@ function __construct()
$one_table,
$one_field,
$one_key['ref_table_name'],
$rel['foreign_field'][$index]
$one_key['ref_index_list'][$index]
);
}
}
Expand Down

0 comments on commit 14d5a7b

Please sign in to comment.