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:
Diffstat (limited to 'libraries/plugins/schema/eps/Eps_Relation_Schema.class.php')
-rw-r--r--libraries/plugins/schema/eps/Eps_Relation_Schema.class.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/libraries/plugins/schema/eps/Eps_Relation_Schema.class.php b/libraries/plugins/schema/eps/Eps_Relation_Schema.class.php
index 5b8366f8fc..93d3ef3fd5 100644
--- a/libraries/plugins/schema/eps/Eps_Relation_Schema.class.php
+++ b/libraries/plugins/schema/eps/Eps_Relation_Schema.class.php
@@ -328,11 +328,13 @@ class PMA_Eps_Relation_Schema extends PMA_Export_Relation_Schema
* Upon instantiation This starts writing the EPS document
* user will be prompted for download as .eps extension
*
+ * @param string $db database name
+ *
* @see PMA_EPS
*/
- function __construct()
+ function __construct($db)
{
- parent::__construct(new PMA_EPS());
+ parent::__construct($db, new PMA_EPS());
$this->setShowColor(isset($_REQUEST['eps_show_color']));
$this->setShowKeys(isset($_REQUEST['eps_show_keys']));