diff --git a/error_report.php b/error_report.php
index 3ed045bcc7..3205108478 100644
--- a/error_report.php
+++ b/error_report.php
@@ -31,7 +31,7 @@ if (isset($_REQUEST['send_error_report'])
PMA_Message::error(
__(
'An error has been detected and an error report has been '
- .'automatically submitted based on your settings.'
+ . 'automatically submitted based on your settings.'
)
. '
'
. __('You may want to refresh the page.')
diff --git a/gis_data_editor.php b/gis_data_editor.php
index 17d0eac747..0c73f11c1c 100644
--- a/gis_data_editor.php
+++ b/gis_data_editor.php
@@ -383,7 +383,7 @@ for ($a = 0; $a < $geom_count; $a++) {
echo '
';
echo '';
+ . ' class="add addLine" value="' . __('Add an inner ring') . '" />';
echo '
';
}
echo '
';
diff --git a/import_status.php b/import_status.php
index f31e424f38..25695aa70a 100644
--- a/import_status.php
+++ b/import_status.php
@@ -85,7 +85,7 @@ if (isset($_GET["message"]) && $_GET["message"]) {
echo '
'."\n";
+ echo '' . "\n";
} else {
PMA_importAjaxStatus($_GET["id"]);
diff --git a/index.php b/index.php
index 163f7046fc..0d3f0b5bc6 100644
--- a/index.php
+++ b/index.php
@@ -223,7 +223,7 @@ echo '';
if ($server > 0) {
echo '';
PMA_printListItem(
- PMA_Util::getImage('b_tblops.png') . " " .__('More settings'),
+ PMA_Util::getImage('b_tblops.png') . " " . __('More settings'),
'li_user_preferences',
'prefs_manage.php?' . $common_url_query,
null,
@@ -633,10 +633,10 @@ function PMA_printListItem($name, $listId = null, $url = null,
echo ' target="' . $target . '"';
}
if (null != $a_id) {
- echo ' id="' . $a_id .'"';
+ echo ' id="' . $a_id . '"';
}
if (null != $a_class) {
- echo ' class="' . $a_class .'"';
+ echo ' class="' . $a_class . '"';
}
echo '>';
}
diff --git a/pmd_general.php b/pmd_general.php
index ac4c59397a..2dd9ecb8e8 100644
--- a/pmd_general.php
+++ b/pmd_general.php
@@ -257,10 +257,10 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) {
if (isset($_REQUEST['query'])) {
echo '| ';
echo ' | ';
+ . htmlspecialchars($t_n_url) . '" style="margin: 0px;" ';
+ echo 'id="select_all_' . htmlspecialchars($t_n_url) . '" title="select all" ';
+ echo 'onclick="Select_all(\'' . htmlspecialchars($t_n_url) . '\',\''
+ . htmlspecialchars($GLOBALS['PMD_OUT']["OWNER"][$i]) . '\')">';
}
?>
';
+ . htmlspecialchars($t_n_url) . '\');"';
+ echo 'onmouseout="Table_onover(\'' . htmlspecialchars($t_n_url) . '\',1,1)">';
}
?>
@@ -331,34 +331,34 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) {
onmouseout="this.className = old_class;"
onmousedown="Click_field(')">
';
- echo ' | ';
+ . urlencode($GLOBALS['PMD_OUT']["TABLE_NAME_SMALL"][$i]) . '\',\''
+ . htmlspecialchars($GLOBALS['PMD_OUT']["OWNER"][$i]) . '\',\''
+ . urlencode($tab_column[$t_n]["COLUMN_NAME"][$j]) . '\')">';
}?>
">
+ id="">
; ?>pmd/FieldKey_small.png)
@@ -399,7 +399,7 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) {
echo 'onmouseout="this.className=\'small_tab_pref\';"';
echo 'onclick="Click_option(\'pmd_optionse\',\''
. urlencode($tab_column[$t_n]["COLUMN_NAME"][$j]) . '\',\''
- . $GLOBALS['PMD_OUT']["TABLE_NAME_SMALL"][$i].'\')" >';
+ . $GLOBALS['PMD_OUT']["TABLE_NAME_SMALL"][$i] . '\')" >';
echo ' 
. ') | ';
diff --git a/pmd_pdf.php b/pmd_pdf.php
index 141fcd4806..d8fb1c194a 100644
--- a/pmd_pdf.php
+++ b/pmd_pdf.php
@@ -75,14 +75,14 @@ if (isset($_POST['mode'])) {
if ('import' == $_POST['mode']) {
PMA_queryAsControlUser(
'UPDATE ' . $pma_table . ',' . $pmd_table .
- ' SET ' . $pmd_table . '.`x`= ' . $pma_table . '.`x` * '. $scale_q . ',
- ' . $pmd_table . '.`y`= ' . $pma_table . '.`y` * '. $scale_q .'
+ ' SET ' . $pmd_table . '.`x`= ' . $pma_table . '.`x` * ' . $scale_q . ',
+ ' . $pmd_table . '.`y`= ' . $pma_table . '.`y` * ' . $scale_q . '
WHERE
' . $pmd_table . '.`db_name`=' . $pma_table . '.`db_name`
AND
' . $pmd_table . '.`table_name` = ' . $pma_table . '.`table_name`
AND
- ' . $pmd_table . '.`db_name`=\''. PMA_Util::sqlAddSlashes($db) . '\'
+ ' . $pmd_table . '.`db_name`=\'' . PMA_Util::sqlAddSlashes($db) . '\'
AND pdf_page_number = ' . $pdf_page_number_q . ';',
true, PMA_DatabaseInterface::QUERY_STORE
);
diff --git a/pmd_relation_new.php b/pmd_relation_new.php
index c2cb1d53e8..cd363c8a49 100644
--- a/pmd_relation_new.php
+++ b/pmd_relation_new.php
@@ -121,13 +121,13 @@ function PMD_Return_new($b,$ret)
global $db,$T1,$F1,$T2,$F2;
header("Content-Type: text/xml; charset=utf-8");
header("Cache-Control: no-cache");
- die('');
}
?>
diff --git a/pmd_relation_upd.php b/pmd_relation_upd.php
index e1b4c35131..0cb6b3535f 100644
--- a/pmd_relation_upd.php
+++ b/pmd_relation_upd.php
@@ -53,7 +53,7 @@ if ($try_to_delete_internal_relation) {
PMA_queryAsControlUser(
'DELETE FROM '
. PMA_Util::backquote($GLOBALS['cfgRelation']['db']) . '.'
- . $cfg['Server']['relation'].' WHERE '
+ . $cfg['Server']['relation'] . ' WHERE '
. 'master_db = \'' . PMA_Util::sqlAddSlashes($DB2) . '\''
. ' AND master_table = \'' . PMA_Util::sqlAddSlashes($T2) . '\''
. ' AND master_field = \'' . PMA_Util::sqlAddSlashes($F2) . '\''
diff --git a/user_password.php b/user_password.php
index c440cf8cad..94d73895ca 100644
--- a/user_password.php
+++ b/user_password.php
@@ -234,9 +234,9 @@ function PMA_changePassDisplayPage($message, $sql_query, $_url_params)
echo PMA_Util::getMessage(
$message, $sql_query, 'success'
);
- echo ''. "\n"
- .''.__('Back').'';
+ echo '' . "\n"
+ . '' . __('Back') . '';
exit;
}
?>