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-03-19 20:55:39 +0300
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-03-19 20:55:39 +0300
commit817e790762d33c1b216636ef20929d8473804eee (patch)
treed95a69f9bee45619b49c5ac88159a02d9bd04e8d /pdf_schema.php
parentb800466c912d1f2560992bbbe862a23b4c530913 (diff)
synced/fixed vim line
Diffstat (limited to 'pdf_schema.php')
-rw-r--r--pdf_schema.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/pdf_schema.php b/pdf_schema.php
index 86c27da995..c1aedb3e4c 100644
--- a/pdf_schema.php
+++ b/pdf_schema.php
@@ -1,6 +1,6 @@
<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
/* $Id$ */
-// vim: expandtab sw=4 ts=4 sts=4:
/**
* Contributed by Maxime Delorme and merged by lem9
*/
@@ -90,7 +90,7 @@ class PMA_PDF extends TCPDF {
$nb = $this->page;
foreach ($this->Alias AS $alias => $value) {
for ($n = 1;$n <= $nb;$n++)
- $this->pages[$n]=str_replace($alias, $value, $this->pages[$n]);
+ $this->pages[$n]=str_replace($alias, $value, $this->pages[$n]);
}
}
parent::_putpages();