if a page is edited now it can be shown directly

This commit is contained in:
Mike Beck
2002-07-16 17:53:32 +00:00
parent 262c7c9613
commit bb870ba1f6
2 changed files with 26 additions and 0 deletions

View File

@@ -4,6 +4,13 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-07-16 Mike Beck <mikebeck@users.sourceforge.net>
* pdf_pages.php3: if a page is edit it can also be shown
2002-07-16 Mike Beck <mikebeck@users.sourceforge.net>
* libraries/relation.lib.php3: verbose mode
* db_details_structure.php3: show message if relation doesn't work
* chk_rel.php3: new file to show what is wrong with relation
2002-07-16 Alexander M. Turek <rabus@users.sourceforge.net>
* header.inc.php3: Use include() instead of require().

View File

@@ -252,6 +252,25 @@ if ($cfgRelation['pdfwork']) {
echo "\n" . ' <input type="submit" value="' . $strGo . '" />';
echo "\n" . '</form>' . "\n\n";
} // end if
if($do=="edcoord" || $do == "choosepage"){
?>
<form method="post" action="pdf_schema.php3">
<input type="hidden" name="server" value="<?php echo $server; ?>" />
<input type="hidden" name="lang" value="<?php echo $lang; ?>" />
<input type="hidden" name="convcharset" value="<?php echo $convcharset; ?>" />
<input type="hidden" name="db" value="<?php echo $db; ?>" />
<input type="hidden" name="pdf_page_number" value="<?php echo $chpage; ?>" />
<?php echo $strDisplayPDF; ?>&nbsp;:<br />
<input type="checkbox" name="show_grid" id="show_grid_opt" />
<label for="show_grid_opt"><?php echo $strShowGrid; ?></label><br />
<input type="checkbox" name="show_color" id="show_color_opt" checked="checked" />
<label for="show_color_opt"><?php echo $strShowColor; ?></label><br />
<input type="checkbox" name="show_table_dimension" id="show_table_dim_opt" />
<label for="show_table_dim_opt"><?php echo $strShowTableDimension; ?></label>
&nbsp;&nbsp;<input type="submit" value="<?php echo $strGo; ?>" />
</form>
<?php
}
} // end if ($cfgRelation['pdfwork'])