Commit 769dd63436692fb2ca2dbb7c9c4e0894dc7d6a63

Authored by Jarrett Jordaan
1 parent c408a132

KTS-4438: Updated Services

Committed by: Jarrett Jordaan

Reviewed by: Megan Watson
setup/migrate/migrateWizard.php
... ... @@ -261,7 +261,7 @@ class MigrateWizard {
261 261 }
262 262 } else {
263 263 // TODO: Die gracefully
264   - $this->util->error("System has been migrated <div class=\"buttons\"><a href='../../'>Goto Login</a></div>");
  264 + $this->util->error("System has been migrated <a href='../../login.php' class='back' style='width:80px;float:none'>Goto Login</a>");
265 265 }
266 266 }
267 267 }
... ...
setup/wizard/installWizard.php
... ... @@ -287,14 +287,7 @@ class InstallWizard {
287 287 $this->util->redirect('../migrate');
288 288 } elseif ($this->util->upgradeSpecified()) {
289 289 $this->util->redirect('../upgrade/index.php?action=installer');
290   - }/* elseif ($this->util->loginSpecified()) {
291   - header("Cache-Control: no-cache");
292   - $this->util->redirect('../../admin.php');
293   - } elseif ($this->util->zendSpecified()) {
294   - $zend = "http://".$_SERVER['HTTP_HOST'].":10081/ZendServer/Index";
295   - header("Cache-Control: no-cache");
296   - $this->util->redirect($zend);
297   - }*/
  290 + }
298 291 $response = $this->systemChecks();
299 292 if($response === true) {
300 293 $this->displayInstaller();
... ... @@ -303,7 +296,7 @@ class InstallWizard {
303 296 }
304 297 } else {
305 298 // TODO: Die gracefully
306   - $this->util->error("System has been installed <div class=\"buttons\"><a href='../../'>Goto Login</a></div>");
  299 + $this->util->error("System has been installed <a href='../../login.php' class='back' style='width:80px;float:none'>Goto Login</a>");
307 300 }
308 301 }
309 302 }
... ...
setup/wizard/templates/error.tpl
... ... @@ -9,7 +9,8 @@
9 9 </head>
10 10  
11 11 <body onload="">
12   - <div id="outer-wrapper">
  12 + <div id="outer-outer-wrapper" align="center">
  13 + <div id="outer-wrapper" align="left">
13 14 <div id="header">
14 15 <div id="logo"><img src="resources/graphics/dame/installer-header_logo.png"/></div>
15 16 <div id="install_details">
... ... @@ -53,12 +54,11 @@
53 54 </div>
54 55 <div class="clearing">&nbsp;</div>
55 56 </div>
56   -
57 57 <div id="footer">
58   -
59 58 <img width="105" height="23" align="right" src="resources/graphics/dame/powered-by-kt.png" style="padding: 5px;"/>
60 59 </div>
61 60 </div>
  61 + </div>
62 62 </body>
63 63 </html>
64 64 <script>
... ...