[Rt-commit] rt branch, 4.4/dashboard-tables, updated. rt-4.2.5-201-g39d66fa
? sunnavy
sunnavy at bestpractical.com
Mon Sep 29 10:55:17 EDT 2014
The branch, 4.4/dashboard-tables has been updated
via 39d66faa307d2ab40493a734088c12ac6c3f615e (commit)
from e5ac318b928c3297c831a46a703a7c8388512e10 (commit)
Summary of changes:
share/html/Dashboards/Modify.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
- Log -----------------------------------------------------------------
commit 39d66faa307d2ab40493a734088c12ac6c3f615e
Author: sunnavy <sunnavy at bestpractical.com>
Date: Mon Sep 29 22:52:01 2014 +0800
fix uninitialized warning to make smoke tests happy
Name could be undef when $Dashboard isn't created yet
diff --git a/share/html/Dashboards/Modify.html b/share/html/Dashboards/Modify.html
index f8f7376..f981e00 100644
--- a/share/html/Dashboards/Modify.html
+++ b/share/html/Dashboards/Modify.html
@@ -61,7 +61,7 @@
<table>
<tr>
<td class="label"><&|/l&>Name</&>:</td>
- <td class="value"><input name="Name" value="<%$Dashboard->Name%>" /></td>
+ <td class="value"><input name="Name" value="<%$Dashboard->Name // ''%>" /></td>
</tr>
<tr>
<td class="label"><&|/l&>Privacy</&>:</td>
-----------------------------------------------------------------------
More information about the rt-commit
mailing list