Mailinglist Archive: yast-commit (883 mails)
| < Previous | Next > |
[yast-commit] <web-client> master : check if backtrace exists, fixed
- From: Duncan Mac-Vicar P <dmacvicar@xxxxxxx>
- Date: Thu, 16 Jul 2009 14:40:47 +0200
- Message-id: <E1MRQGb-0004VY-FD@xxxxxxxxxxxxxxxx>
ref: refs/heads/master
commit c956a2061a1c8893d027ed43b08124270d06d196
Author: Duncan Mac-Vicar P <dmacvicar@xxxxxxx>
Date: Thu Jul 16 14:40:47 2009 +0200
check if backtrace exists, fixed
---
webclient/app/views/shared/exception_trap.html.erb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/webclient/app/views/shared/exception_trap.html.erb
b/webclient/app/views/shared/exception_trap.html.erb
index be71515..97d8b82 100644
--- a/webclient/app/views/shared/exception_trap.html.erb
+++ b/webclient/app/views/shared/exception_trap.html.erb
@@ -18,7 +18,7 @@ $(document).ready(function() {
<a href="#" id="details-link">Show details...</a>
<pre id="backtrace" style="display: none">
-<%= backtrace.blank? ? @error.backtrace.join("\n") : "No information
available" %>
+<%= @error.backtrace.blank? ? @error.backtrace.join("\n") : "No information
available" %>
</pre>
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
commit c956a2061a1c8893d027ed43b08124270d06d196
Author: Duncan Mac-Vicar P <dmacvicar@xxxxxxx>
Date: Thu Jul 16 14:40:47 2009 +0200
check if backtrace exists, fixed
---
webclient/app/views/shared/exception_trap.html.erb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/webclient/app/views/shared/exception_trap.html.erb
b/webclient/app/views/shared/exception_trap.html.erb
index be71515..97d8b82 100644
--- a/webclient/app/views/shared/exception_trap.html.erb
+++ b/webclient/app/views/shared/exception_trap.html.erb
@@ -18,7 +18,7 @@ $(document).ready(function() {
<a href="#" id="details-link">Show details...</a>
<pre id="backtrace" style="display: none">
-<%= backtrace.blank? ? @error.backtrace.join("\n") : "No information
available" %>
+<%= @error.backtrace.blank? ? @error.backtrace.join("\n") : "No information
available" %>
</pre>
--
To unsubscribe, e-mail: yast-commit+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: yast-commit+help@xxxxxxxxxxxx
| < Previous | Next > |