summaryrefslogtreecommitdiff
path: root/includes/pages/admin_import.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2011-12-26 15:58:14 +0100
committerPhilip Häusler <msquare@notrademark.de>2011-12-26 15:58:14 +0100
commit1852a2a1ae190391d47d5ce15398bc0c02c7071b (patch)
tree4fec54bd80c0f4b6da75ef9ddcf921f6e310ddda /includes/pages/admin_import.php
parentd1078f60fdb2237b1a3bfe0b664da1a5e7425d1f (diff)
parentbc471460fc8cce0bb9d8b5631e8d57fdec6a3b39 (diff)
style duplication
Diffstat (limited to 'includes/pages/admin_import.php')
-rw-r--r--includes/pages/admin_import.php19
1 files changed, 13 insertions, 6 deletions
diff --git a/includes/pages/admin_import.php b/includes/pages/admin_import.php
index 6e6cc9e8..5ac62d2d 100644
--- a/includes/pages/admin_import.php
+++ b/includes/pages/admin_import.php
@@ -40,18 +40,25 @@ function admin_import() {
} else {
$fileOut = fopen($import_file, "w");
$head = 'GET /' . $PentabarfXMLpath . $_REQUEST["url"] . ' HTTP/1.1' . "\r\n" .
- 'Host: ' . $PentabarfXMLhost . "\r\n" .
- 'User-Agent: Engelsystem' . "\r\n" .
- 'Authorization: Basic ' .
- base64_encode($_REQUEST["user"] . ':' . $_REQUEST["password"]) . "\r\n" .
- "\r\n";
+ 'Host: ' . $PentabarfXMLhost . "\r\n" .
+ 'User-Agent: Engelsystem' . "\r\n" .
+ 'Authorization: Basic ' .
+ base64_encode($_REQUEST["user"] . ':' . $_REQUEST["password"]) . "\r\n" .
+ "\r\n";
fputs($fp, $head);
$Zeilen = -1;
+ echo "<pre>";
while (!feof($fp)) {
$Temp = fgets($fp, 1024);
+ // show header
+ if ($Zeilen == -1) {
+ echo $Temp;
+ }
+
// ende des headers
- if ($Temp == "f20\r\n") {
+ if ($Temp == "\r\n") {
+ echo "</pre>\n";
$Zeilen = 0;
$Temp = "";
}