Skip to content

Commit

Permalink
Fixed syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
roccivic committed Oct 30, 2012
1 parent 5b0b9e4 commit efb83da
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion db_structure.php
Expand Up @@ -271,7 +271,7 @@
);

list($html_output, $odd_row) = PMA_getHtmlForStructureTableRow(
$i, $odd_row, $table_is_view, $current_table
$i, $odd_row, $table_is_view, $current_table,
$browse_table_label, $tracking_icon, $server_slave_status,
$browse_table, $tbl_url_query, $search_table, $db_is_information_schema,
$titles, $empty_table, $drop_query, $drop_message, $collation,
Expand Down
2 changes: 1 addition & 1 deletion server_export.php
Expand Up @@ -25,7 +25,7 @@
$multi_values .= __('Select All');
$multi_values .= '</a>';
$multi_values .= ' / ';
$multi_values .= '<a href="#"'
$multi_values .= '<a href="#"';
$multi_values .= ' onclick="setSelectOptions(\'dump\', \'db_select[]\', false); return false;">';
$multi_values .= __('Unselect All') . '</a><br />';

Expand Down
6 changes: 3 additions & 3 deletions sql.php
Expand Up @@ -370,7 +370,7 @@
$result = PMA_Bookmark_save(
$fields,
(isset($bkm_all_users) && $bkm_all_users == 'true' ? true : false)
)
);
$response = PMA_Response::getInstance();
if ($response->isAjax()) {
if ($result) {
Expand Down Expand Up @@ -1247,7 +1247,7 @@
. '&amp;id_bookmark=1';

echo '<form action="sql.php" method="post"'
. ' onsubmit="return emptyFormElements(this, \'fields[label]\');"';
. ' onsubmit="return emptyFormElements(this, \'fields[label]\');"'
. ' id="bookmarkQueryForm">';
echo PMA_generate_common_hidden_inputs();
echo '<input type="hidden" name="goto" value="' . $goto . '" />';
Expand Down Expand Up @@ -1280,7 +1280,7 @@
echo '</fieldset>';
echo '<fieldset class="tblFooters">';
echo '<input type="hidden" name="store_bkm" value="1" />';
echo '<input type="submit"';
echo '<input type="submit"'
. ' value="' . __('Bookmark this SQL query') . '" />';
echo '</fieldset>';
echo '</form>';
Expand Down

0 comments on commit efb83da

Please sign in to comment.