Fix indentation

This commit is contained in:
Kasun Chathuranga 2013-06-11 21:55:56 +05:30
parent 479d2c1847
commit 3ccfc6fe88
2 changed files with 8 additions and 9 deletions

View File

@ -68,7 +68,7 @@ $all_tables_result = PMA_queryAsControlUser($all_tables_query);
// If a HEAD version exists
if ($GLOBALS['dbi']->numRows($all_tables_result) > 0) {
?>
?>
<div id="tracked_tables">
<h3><?php echo __('Tracked tables');?></h3>
@ -151,7 +151,7 @@ if ($GLOBALS['dbi']->numRows($all_tables_result) > 0) {
</tbody>
</table>
</div>
<?php
<?php
}
$sep = $GLOBALS['cfg']['NavigationTreeTableSeparator'];
@ -189,7 +189,7 @@ foreach ($table_list as $key => $value) {
// If untracked tables exist
if (isset($my_tables)) {
?>
?>
<h3><?php echo __('Untracked tables');?></h3>
<table id="noversions" class="data">
@ -200,7 +200,7 @@ if (isset($my_tables)) {
</tr>
</thead>
<tbody>
<?php
<?php
// Print out list of untracked tables
$style = 'odd';
@ -211,12 +211,12 @@ if (isset($my_tables)) {
. '&amp;table=' . htmlspecialchars($tablename) .'">';
$my_link .= PMA_Util::getIcon('eye.png', __('Track table'));
$my_link .= '</a>';
?>
?>
<tr class="noclick <?php echo $style;?>">
<td><?php echo htmlspecialchars($tablename);?></td>
<td><?php echo $my_link;?></td>
</tr>
<?php
<?php
if ($style == 'even') {
$style = 'odd';
} else {
@ -227,8 +227,7 @@ if (isset($my_tables)) {
?>
</tbody>
</table>
<?php
<?php
}
// If available print out database log
if (count($data['ddlog']) > 0) {

View File

@ -2156,7 +2156,7 @@ function PMA_getCurrentValueAsAnArrayForMultipleEdit($multi_edit_colummns,
return $multi_edit_funcs[$key] . '(' . $current_value . ",'"
. PMA_Util::sqlAddSlashes($multi_edit_salt[$key]) . "')";
} else {
return $multi_edit_funcs[$key] . '(' . $current_value . ')';
return $multi_edit_funcs[$key] . '(' . $current_value . ')';
}
} else {
return $multi_edit_funcs[$key] . '()';