[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_1RC1-1115-gec05354
Michal Čihař
nijel at users.sourceforge.net
Wed Mar 31 10:28:59 CEST 2010
The branch, master has been updated
via ec053542f51da8c05d2d743f40ee930a18ee5b20 (commit)
via fad777ecb23ac323ba4b1a86220f8b4b7c612306 (commit)
from dad105b4fe9482d11e58deb288c6a3f5d8c3d776 (commit)
- Log -----------------------------------------------------------------
commit ec053542f51da8c05d2d743f40ee930a18ee5b20
Merge: dad105b4fe9482d11e58deb288c6a3f5d8c3d776 fad777ecb23ac323ba4b1a86220f8b4b7c612306
Author: Michal Čihař <mcihar at novell.com>
Date: Wed Mar 31 10:28:40 2010 +0200
Merge branch 'QA_3_3'
-----------------------------------------------------------------------
Summary of changes:
pdf_schema.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pdf_schema.php b/pdf_schema.php
index 99a9b33..80972aa 100644
--- a/pdf_schema.php
+++ b/pdf_schema.php
@@ -893,7 +893,7 @@ class PMA_RT {
$pdf->SetDrawColor(200, 200, 200);
// Draws horizontal lines
for ($l = 0; $l < 21; $l++) {
- $pdf->line(0, $l * 10, $pdf->fh, $l * 10);
+ $pdf->line(0, $l * 10, $pdf->getFh(), $l * 10);
// Avoid duplicates
if ($l > 0) {
$pdf->SetXY(0, $l * 10);
@@ -903,7 +903,7 @@ class PMA_RT {
} // end for
// Draws vertical lines
for ($j = 0; $j < 30 ;$j++) {
- $pdf->line($j * 10, 0, $j * 10, $pdf->fw);
+ $pdf->line($j * 10, 0, $j * 10, $pdf->getFw());
$pdf->SetXY($j * 10, 0);
$label = (string) sprintf('%.0f', ($j * 10 - $this->l_marg) * $this->scale + $this->x_min);
$pdf->Cell(5, 7, $label);
hooks/post-receive
--
phpMyAdmin
More information about the Git
mailing list