Fix indentation
This commit is contained in:
parent
479d2c1847
commit
3ccfc6fe88
@ -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)) {
|
||||
. '&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) {
|
||||
|
||||
@ -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] . '()';
|
||||
|
||||
Loading…
Reference in New Issue
Block a user