Skip to content

Commit

Permalink
fiixed Typs plus remove default from text field
Browse files Browse the repository at this point in the history
Signed-off-by: Smita Kumari <[email protected]>
  • Loading branch information
smita786 committed Jun 2, 2014
1 parent 1ec1f2b commit abdb92e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion db_central_columns.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
);
exit;
}
if (isset($_POST['pupluateColumn'])) {
if (isset($_POST['populateColumns'])) {
$selected_tbl = htmlspecialchars($_POST['selectedTable']);
echo PMA_getHTMLforColumnDropdown($db, $selected_tbl);
exit;
Expand Down
2 changes: 1 addition & 1 deletion examples/create_tables.sql
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ CREATE TABLE IF NOT EXISTS `pma__central_columns` (
`col_collation` varchar(64) NOT NULL,
`col_isNull` boolean NOT NULL,
`col_extra` varchar(255) default '',
`col_default` text default '',
`col_default` text,
PRIMARY KEY (`db_name`,`col_name`)
)
COMMENT='Central list of columns'
Expand Down
2 changes: 1 addition & 1 deletion js/db_central_columns.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ AJAX.registerOnload('db_central_columns.js', function () {
'token' : PMA_commonParams.get('token'),
'db' : PMA_commonParams.get('db'),
'selectedTable' : selectvalue,
'pupluateColumn' : true
'populateColumns' : true
};
$('#column-select').html('<option value="">Loading...</option>');

Expand Down

0 comments on commit abdb92e

Please sign in to comment.