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>2006-04-25 19:21:33 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2006-04-25 19:21:33 +0400
commit7a19861b4b4b8e3c3cc22e769c8107b3c699e101 (patch)
tree3ffb7ee7e0f0f90d95476c020d59fe7b10327044 /pdf_schema.php
parentaad17c30da7b01c1fc84aa50f4e43d8e383ce66c (diff)
style upgrade
Diffstat (limited to 'pdf_schema.php')
-rw-r--r--pdf_schema.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/pdf_schema.php b/pdf_schema.php
index 2db981a8f4..047d47d8a9 100644
--- a/pdf_schema.php
+++ b/pdf_schema.php
@@ -1251,7 +1251,6 @@ function PMA_RT_DOC($alltables)
$pdf->Ln();
}
- $i = 0;
$pdf->SetFont('', 'B');
if (isset($orientation) && $orientation == 'L') {
$pdf->Cell(25, 8, ucfirst($GLOBALS['strField']), 1, 0, 'C');
@@ -1287,9 +1286,6 @@ function PMA_RT_DOC($alltables)
$pdf->SetFont('', '');
while ($row = PMA_DBI_fetch_assoc($result)) {
- $bgcolor = ($i % 2) ?$GLOBALS['cfg']['BgcolorOne'] : $GLOBALS['cfg']['BgcolorTwo'];
- $i++;
-
$type = $row['Type'];
// reformat mysql query output - staybyte - 9. June 2001
// loic1: set or enum types: slashes single quotes inside options