<com:TContent ID="Message">
<div id="message-box">
<h2><%[ Baculum problem ]%></h2>
- <com:TPanel Visible="<%=$this->error != 2 && $this->error != 4 && $this->error != 6%>">
- <h3>Error <%=$this->error%> - <%=$this->output%></h3>
- <hr />
- </com:TPanel>
+ <h3>Error <%=$this->error%> - <%=$this->output%></h3>
+ <hr />
<p class="center">
<a href="<%=$this->Service->constructUrl('WebHome')%>"><%[ TRY AGAIN ]%></a> <%[ or run ]%>
<a href="<%=$this->Service->constructUrl('WebConfigWizard')%>"><%[ Baculum Initial Wizard ]%></a>
Prado::using('Application.Web.Class.BaculumWebPage');
class BaculumError extends BaculumWebPage {
+
public $error;
public $output;
public function onInit($param) {
$this->error = intval($this->Request['error']);
- $this->output = $this->Request['output'];
+ $this->output = urldecode($this->Request['output']);
}
}
?>