Merge remote-tracking branch 'origin/QA_4_3' into QA_4_3
This commit is contained in:
commit
1a242a44f5
@ -11,6 +11,7 @@ phpMyAdmin - ChangeLog
|
||||
- bug Null argument in array_multisort()
|
||||
- bug #4699 Navigation panel should not hide icons based on 'TableNavigationLinksMode'
|
||||
- bug #4703 Unsaved schema page exported as pdf.pdf
|
||||
- bug #4707 Call to undefined method PMA_Schema_PDF::dieSchema()
|
||||
|
||||
4.3.6.0 (2015-01-07)
|
||||
- bug Undefined index notices while configuring recent and favorite tables
|
||||
|
||||
@ -280,7 +280,7 @@ class PMA_Export_Relation_Schema
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
function dieSchema($pageNumber, $type = '', $error_message = '')
|
||||
public static function dieSchema($pageNumber, $type = '', $error_message = '')
|
||||
{
|
||||
echo "<p><strong>" . __("SCHEMA ERROR: ") . $type . "</strong></p>" . "\n";
|
||||
if (!empty($error_message)) {
|
||||
|
||||
@ -62,7 +62,7 @@ class Table_Stats_Dia extends TableStats
|
||||
*/
|
||||
protected function showMissingTableError()
|
||||
{
|
||||
$this->diagram->dieSchema(
|
||||
PMA_Export_Relation_Schema::dieSchema(
|
||||
$this->pageNumber,
|
||||
"DIA",
|
||||
sprintf(__('The %s table doesn\'t exist!'), $this->tableName)
|
||||
@ -76,7 +76,7 @@ class Table_Stats_Dia extends TableStats
|
||||
*/
|
||||
protected function showMissingCoordinatesError()
|
||||
{
|
||||
$this->diagram->dieSchema(
|
||||
PMA_Export_Relation_Schema::dieSchema(
|
||||
$this->pageNumber,
|
||||
"DIA",
|
||||
sprintf(
|
||||
|
||||
@ -75,7 +75,7 @@ class Table_Stats_Eps extends TableStats
|
||||
*/
|
||||
protected function showMissingTableError()
|
||||
{
|
||||
$this->diagram->dieSchema(
|
||||
PMA_Export_Relation_Schema::dieSchema(
|
||||
$this->pageNumber,
|
||||
"EPS",
|
||||
sprintf(__('The %s table doesn\'t exist!'), $this->tableName)
|
||||
@ -89,7 +89,7 @@ class Table_Stats_Eps extends TableStats
|
||||
*/
|
||||
protected function showMissingCoordinatesError()
|
||||
{
|
||||
$this->diagram->dieSchema(
|
||||
PMA_Export_Relation_Schema::dieSchema(
|
||||
$this->pageNumber,
|
||||
"EPS",
|
||||
sprintf(
|
||||
|
||||
@ -76,7 +76,7 @@ class Table_Stats_Pdf extends TableStats
|
||||
*/
|
||||
protected function showMissingTableError()
|
||||
{
|
||||
$this->diagram->dieSchema(
|
||||
PMA_Export_Relation_Schema::dieSchema(
|
||||
$this->pageNumber,
|
||||
"PDF",
|
||||
sprintf(__('The %s table doesn\'t exist!'), $this->tableName)
|
||||
@ -90,7 +90,7 @@ class Table_Stats_Pdf extends TableStats
|
||||
*/
|
||||
protected function showMissingCoordinatesError()
|
||||
{
|
||||
$this->diagram->dieSchema(
|
||||
PMA_Export_Relation_Schema::dieSchema(
|
||||
$this->pageNumber,
|
||||
"PDF",
|
||||
sprintf(
|
||||
|
||||
@ -76,7 +76,7 @@ class Table_Stats_Svg extends TableStats
|
||||
*/
|
||||
protected function showMissingTableError()
|
||||
{
|
||||
$this->diagram->dieSchema(
|
||||
PMA_Export_Relation_Schema::dieSchema(
|
||||
$this->pageNumber,
|
||||
"SVG",
|
||||
sprintf(__('The %s table doesn\'t exist!'), $this->tableName)
|
||||
@ -90,7 +90,7 @@ class Table_Stats_Svg extends TableStats
|
||||
*/
|
||||
protected function showMissingCoordinatesError()
|
||||
{
|
||||
$this->diagram->dieSchema(
|
||||
PMA_Export_Relation_Schema::dieSchema(
|
||||
$this->pageNumber,
|
||||
"SVG",
|
||||
sprintf(
|
||||
|
||||
Loading…
Reference in New Issue
Block a user