summaryrefslogtreecommitdiff
path: root/includes/funktion_db.php
diff options
context:
space:
mode:
authorMoritz helios Rudert <helios@planetcyborg.de>2011-06-01 19:42:57 +0200
committerMoritz helios Rudert <helios@planetcyborg.de>2011-06-01 19:42:57 +0200
commit841bf6a1ca80c14e2ff0ff60a6cb7794527a7ddf (patch)
treede77ecbc12aee14ec6cec9ed9367481d4b0d3c71 /includes/funktion_db.php
parentd85d11276b464052e442297fe93cd5f628b979e2 (diff)
i love this system
Diffstat (limited to 'includes/funktion_db.php')
-rw-r--r--includes/funktion_db.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/funktion_db.php b/includes/funktion_db.php
index 160a9c59..ffd7d6a2 100644
--- a/includes/funktion_db.php
+++ b/includes/funktion_db.php
@@ -48,7 +48,7 @@
$Gefunden = false;
$Diff = "\n<table border=1>\n";
- $Diff .= "<tr>\n\t<th>Feldname</th>\n\t<th>old Value</th>\n\t<th>new Value</th>\n";
+ $Diff .= "<tr>\n<th>Feldname</th>\n<th>old Value</th>\n<th>new Value</th>\n";
$Diff .= "</tr>\n";
foreach($Daten1 as $DataKey => $Data1) {
@@ -58,12 +58,12 @@
foreach($Data1 as $key => $value)
if( $value != $Data2[$key]) {
$Gefunden = true;
- $Diff .= "<tr>\n\t<td>$key</td>\n\t<td>$value</td>\n\t<td>" . $Data2[$key] . "</rd>\n</tr>";
+ $Diff .= "<tr>\n<td>$key</td>\n<td>$value</td>\n<td>" . $Data2[$key] . "</rd>\n</tr>";
}
} else
foreach($Data1 as $key => $value) {
$Gefunden = true;
- $Diff .= "<tr>\n\t<td>$key</td>\n\t<td>$value</td>\n\t<td></rd>\n</tr>";
+ $Diff .= "<tr>\n<td>$key</td>\n<td>$value</td>\n<td></rd>\n</tr>";
}
}