Skip to content

Commit

Permalink
Remove trailing white spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
madhuracj committed Oct 20, 2013
1 parent 5998945 commit ca16959
Show file tree
Hide file tree
Showing 12 changed files with 32 additions and 32 deletions.
4 changes: 2 additions & 2 deletions browse_foreigners.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@

$foreignData = PMA_getForeignData(
$foreigners, $_REQUEST['field'], true,
isset($_REQUEST['foreign_filter'])
? $_REQUEST['foreign_filter']
isset($_REQUEST['foreign_filter'])
? $_REQUEST['foreign_filter']
: '',
isset($foreign_limit) ? $foreign_limit : null
);
Expand Down
4 changes: 2 additions & 2 deletions db_sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
$response->addHTML(
PMA_getHtmlForSqlQueryForm(
true, false,
isset($_REQUEST['delimiter'])
? htmlspecialchars($_REQUEST['delimiter'])
isset($_REQUEST['delimiter'])
? htmlspecialchars($_REQUEST['delimiter'])
: ';'
)
);
Expand Down
4 changes: 2 additions & 2 deletions schema_edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@

if (isset($_REQUEST['do'])
&& ($_REQUEST['do'] == 'edcoord'
|| ($_REQUEST['do']== 'selectpage' && isset($user_schema->chosenPage)
|| ($_REQUEST['do']== 'selectpage' && isset($user_schema->chosenPage)
&& $user_schema->chosenPage != 0)
|| ($_REQUEST['do'] == 'createpage' && isset($user_schema->chosenPage)
|| ($_REQUEST['do'] == 'createpage' && isset($user_schema->chosenPage)
&& $user_schema->chosenPage != 0))
) {

Expand Down
20 changes: 10 additions & 10 deletions server_databases.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,16 +96,16 @@
*/
if ($databases_count > 0) {
$html .= PMA_getHtmlForDatabase(
$databases,
$databases_count,
$pos,
$dbstats,
$sort_by,
$sort_order,
$is_superuser,
$cfg,
$replication_types,
$replication_info,
$databases,
$databases_count,
$pos,
$dbstats,
$sort_by,
$sort_order,
$is_superuser,
$cfg,
$replication_types,
$replication_info,
$url_query
);
} else {
Expand Down
2 changes: 1 addition & 1 deletion server_engines.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/
$response = PMA_Response::getInstance();
$response->addHTML(PMA_getHtmlForSubPageHeader('engines'));

/**
* start output
*/
Expand Down
4 changes: 2 additions & 2 deletions server_plugins.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
/**
* Prepare plugin list
*/
$sql = "SELECT p.plugin_name, p.plugin_type, p.is_active, m.module_name,
m.module_library, m.module_version, m.module_author,
$sql = "SELECT p.plugin_name, p.plugin_type, p.is_active, m.module_name,
m.module_library, m.module_version, m.module_author,
m.module_description, m.module_license
FROM data_dictionary.plugins p
JOIN data_dictionary.modules m USING (module_name)
Expand Down
6 changes: 3 additions & 3 deletions tbl_addfield.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
unset($_REQUEST['do_save_data']);

include_once 'libraries/create_addfield.lib.php';

list($result, $sql_query) = PMA_tryColumnCreationQuery($db, $table, $err_url);

if ($result === true) {
// If comments were sent, enable relation stuff
include_once 'libraries/transformations.lib.php';
Expand Down Expand Up @@ -93,7 +93,7 @@
} else {
$error_message_html = PMA_Util::mysqlDie('', '', '', $err_url, false);
$response->addHTML($error_message_html);
exit;
exit;
}
} // end do alter table

Expand Down
4 changes: 2 additions & 2 deletions tbl_change.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,12 @@
}

$html_output .= PMA_getHtmlForInsertEditRow(
$url_params, $table_columns, $column, $comments_map, $timestamp_seen,
$url_params, $table_columns, $column, $comments_map, $timestamp_seen,
$current_result, $chg_evt_handler, $jsvkey, $vkey, $insert_mode,
isset($current_row) ? $current_row : null, $o_rows, $tabindex, $columns_cnt,
$is_upload, $tabindex_for_function, $foreigners, $tabindex_for_null,
$tabindex_for_value, $table, $db, $row_id, $titles,
$biggest_max_file_size, $text_dir
$biggest_max_file_size, $text_dir
);
} // end foreach on multi-edit

Expand Down
6 changes: 3 additions & 3 deletions tbl_replace.php
Original file line number Diff line number Diff line change
Expand Up @@ -349,15 +349,15 @@
}
} // end of loop for each $mime_map
}

// Need to check the inline edited value can be truncated by MySQL
// without informing while saving
$column_name = $_REQUEST['fields_name']['multi_edit'][0][0];

PMA_verifyWhetherValueCanBeTruncatedAndAppendExtraData(
$db, $table, $column_name, $extra_data
);

/**Get the total row count of the table*/
$extra_data['row_count'] = PMA_Table::countRecords(
$_REQUEST['db'], $_REQUEST['table']
Expand Down
4 changes: 2 additions & 2 deletions tbl_sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
$response->addHTML(
PMA_getHtmlForSqlQueryForm(
true, false,
isset($_REQUEST['delimiter'])
? htmlspecialchars($_REQUEST['delimiter'])
isset($_REQUEST['delimiter'])
? htmlspecialchars($_REQUEST['delimiter'])
: ';'
)
);
Expand Down
2 changes: 1 addition & 1 deletion tbl_tracking.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
$html .= PMA_getHtmlForTrackingReport(
$url_query, $data, $url_params, $selection_schema, $selection_data,
$selection_both, $filter_ts_to, $filter_ts_from, $filter_users
);
);
} // end of report


Expand Down
4 changes: 2 additions & 2 deletions themes/pmahomme/css/jqplot.css.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Styles for jqplot
* Styles for jqplot
* for the pmahomme theme
*
* @package PhpMyAdmin-theme
Expand Down Expand Up @@ -236,7 +236,7 @@
font-size: 0.75em;
z-index: 2;
}

td.jqplot-cursor-legend-swatch {
vertical-align: middle;
text-align: center;
Expand Down

0 comments on commit ca16959

Please sign in to comment.