Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2011-07-22 11:18:02 +0400
committerMichal Čihař <mcihar@suse.cz>2011-07-22 11:18:02 +0400
commit25bda8e991f2820971c343315cd3ab3d974b2684 (patch)
tree6f68b4133c45eca085ee9a677ab196b037e22cd2 /tbl_tracking.php
parent219ec73d69a0bee94ac3bf98757db25360862b39 (diff)
Fix spacing on opening code block
Diffstat (limited to 'tbl_tracking.php')
-rw-r--r--tbl_tracking.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tbl_tracking.php b/tbl_tracking.php
index b249f4c699..00030552c1 100644
--- a/tbl_tracking.php
+++ b/tbl_tracking.php
@@ -369,13 +369,13 @@ if (isset($_REQUEST['snapshot'])) {
*/
if (isset($_REQUEST['report']) && (isset($_REQUEST['delete_ddlog']) || isset($_REQUEST['delete_dmlog']))) {
- if (isset($_REQUEST['delete_ddlog'])){
+ if (isset($_REQUEST['delete_ddlog'])) {
// Delete ddlog row data
$delete_id = $_REQUEST['delete_ddlog'];
// Only in case of valable id
- if ($delete_id == (int)$delete_id){
+ if ($delete_id == (int)$delete_id) {
unset($data['ddlog'][$delete_id]);
if (PMA_Tracker::changeTrackingData($_REQUEST['db'], $_REQUEST['table'], $_REQUEST['version'], 'DDL', $data['ddlog']))
@@ -386,13 +386,13 @@ if (isset($_REQUEST['report']) && (isset($_REQUEST['delete_ddlog']) || isset($_R
}
}
- if (isset($_REQUEST['delete_dmlog'])){
+ if (isset($_REQUEST['delete_dmlog'])) {
// Delete dmlog row data
$delete_id = $_REQUEST['delete_dmlog'];
// Only in case of valable id
- if ($delete_id == (int)$delete_id){
+ if ($delete_id == (int)$delete_id) {
unset($data['dmlog'][$delete_id]);
if (PMA_Tracker::changeTrackingData($_REQUEST['db'], $_REQUEST['table'], $_REQUEST['version'], 'DML', $data['dmlog']))
@@ -658,7 +658,7 @@ if ($last_version > 0) {
} else {
$version_status = __('not active');
}
- if ($version['version'] == $last_version){
+ if ($version['version'] == $last_version) {
if ($version['tracking_active'] == 1) {
$tracking_active = true;
} else {