~ubuntu-branches/ubuntu/intrepid/phpmyadmin/intrepid-security

« back to all changes in this revision

Viewing changes to libraries/tbl_properties.inc.php

  • Committer: Bazaar Package Importer
  • Author(s): Thijs Kinkhorst
  • Date: 2006-11-22 22:24:02 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20061122222402-jwfycdbd9100jzti
Tags: 4:2.9.1.1-1
* New upstream release.
  - Addresses several security issues (Closes: #399329).

* In Depends, explicitly prefer the apache2/apache PHP module, to make
  sure the correct one is selected upon installation.
* Drop 100-dutch_fixtypo.patch, integrated upstream.

* Add note to default config file about adding sensitive data
  to that file (Closes: #321529).
* Update README.Debian with information about register_globals.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
 
/* $Id: tbl_properties.inc.php 9472 2006-09-29 21:12:52Z  $ */
 
2
/* $Id: tbl_properties.inc.php 9614 2006-10-26 14:23:23Z nijel $ */
3
3
// vim: expandtab sw=4 ts=4 sts=4:
4
4
// Check parameters
5
5
 
43
43
</script>
44
44
<?php } ?>
45
45
 
46
 
<form method="post" action="<?php echo $action; ?>" onsubmit="return checkTableEditForm(this, <?php echo $num_fields; ?>)" >
 
46
<form method="post" action="<?php echo $action; ?>">
47
47
<?php
48
48
echo PMA_generate_common_hidden_inputs($db, $table);
49
49
if ($action == 'tbl_create.php') {
673
673
?>
674
674
 
675
675
<fieldset class="tblFooters">
676
 
    <input type="submit" name="do_save_data" value="<?php echo $strSave; ?>" />
 
676
    <input type="submit" name="do_save_data" value="<?php echo $strSave; ?>" onclick="return checkTableEditForm(this.form, <?php echo $num_fields; ?>)" />
677
677
<?php if ($action == 'tbl_create.php' || $action == 'tbl_addfield.php') { ?>
678
678
    <?php echo $GLOBALS['strOr']; ?>
679
679
    <?php echo sprintf( $strAddFields, '<input type="text" id="added_fields" name="added_fields" size="2" value="1" onfocus="this.select()" />' ); ?>