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:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2007-08-02 15:40:16 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-08-02 15:40:16 +0400
commitd2b9013fad44c266b0d3a01533a7a599c516395b (patch)
treeac05ff4a2b799e156ab6b1e065924eecc3ed93ed /pdf_schema.php
parent3623ccbc73e751e98b51bec230cbf62dcde6bf02 (diff)
fixed E_STRICT
Diffstat (limited to 'pdf_schema.php')
-rw-r--r--pdf_schema.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/pdf_schema.php b/pdf_schema.php
index 2ff0ba9672..5d31802d63 100644
--- a/pdf_schema.php
+++ b/pdf_schema.php
@@ -76,7 +76,7 @@ class PMA_PDF extends TCPDF {
* @access public
* @see FPDF::FPDF()
*/
- function PMA_PDF($orientation = 'L', $unit = 'mm', $format = 'A4')
+ function __construct($orientation = 'L', $unit = 'mm', $format = 'A4')
{
$this->Alias = array() ;
$this->TCPDF($orientation, $unit, $format);
@@ -617,7 +617,7 @@ class PMA_RT_Table {
* @see PMA_PDF, PMA_RT_Table::PMA_RT_Table_setWidth,
PMA_RT_Table::PMA_RT_Table_setHeight
*/
- function PMA_RT_Table($table_name, $ff, &$same_wide_width)
+ function __construct($table_name, $ff, &$same_wide_width)
{
global $pdf, $pdf_page_number, $cfgRelation, $db;
@@ -750,7 +750,7 @@ class PMA_RT_Relation {
* @access private
* @see PMA_RT_Relation::PMA_RT_Relation_getXy
*/
- function PMA_RT_Relation($master_table, $master_field, $foreign_table, $foreign_field)
+ function __construct($master_table, $master_field, $foreign_table, $foreign_field)
{
$src_pos = $this->PMA_RT_Relation_getXy($master_table, $master_field);
$dest_pos = $this->PMA_RT_Relation_getXy($foreign_table, $foreign_field);
@@ -959,7 +959,7 @@ class PMA_RT {
* @access private
* @see PMA_PDF
*/
- function PMA_RT($which_rel, $show_info = 0, $change_color = 0, $show_grid = 0, $all_tab_same_wide = 0, $orientation = 'L', $paper = 'A4')
+ function __construct($which_rel, $show_info = 0, $change_color = 0, $show_grid = 0, $all_tab_same_wide = 0, $orientation = 'L', $paper = 'A4')
{
global $pdf, $db, $cfgRelation, $with_doc;