Skip to content
Snippets Groups Projects
Commit 1dadb803 authored by Stein Magne Bjorklund's avatar Stein Magne Bjorklund
Browse files

Cleanup Importer::showFinishing()

parent 001f1761
No related branches found
No related tags found
1 merge request!18Resolve "Remove all use of GLOBALS"
...@@ -350,18 +350,19 @@ class Importer ...@@ -350,18 +350,19 @@ class Importer
echo $doc; echo $doc;
} }
private function showFinishing() private function showFinishing(): void
{ {
$doc = "<html> echo <<<HTML
<html lang="eng">
<head> <head>
<title>Finishing import</title> <title>Finishing import</title>
</head> </head>
<body> <body>
<h2>Import finished</h2> <h2>Import finished</h2>
Your new application is ready. Please go to the <a href='" . $this->basedir . "'>home page</a>. Your new application is ready. Please go to the <a href='" . $this->basedir . "'>home page</a>.
</body> </body>
</html>"; </html>
echo $doc; HTML;
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment