
sunnavy at bestpractical
Nov 4, 2009, 10:33 PM
Post #1 of 1
(149 views)
Permalink
|
|
rt branch, 3.999-trunk, updated. 202e9e99ff51d78e3f28fd7577ebe31899171e44
|
|
The branch, 3.999-trunk has been updated via 202e9e99ff51d78e3f28fd7577ebe31899171e44 (commit) via dcf69b65e2805aa160cd6bc4a4846e62afde93f8 (commit) via f1cd431fbfe5ed16778ea1bfc10f3dfd68039bdd (commit) from da5d00db20d316af38d3d49a802be01c90886d34 (commit) Summary of changes: .../Admin/Tools/Shredder/Elements/SelectPlugin | 2 +- share/html/Elements/ListMenu | 2 +- share/html/SelfService/Create.html | 2 +- share/html/SelfService/CreateTicketInQueue.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) - Log ----------------------------------------------------------------- commit f1cd431fbfe5ed16778ea1bfc10f3dfd68039bdd Author: sunnavy <sunnavy [at] bestpractical> Date: Thu Nov 5 14:13:03 2009 +0800 case fix diff --git a/share/html/Admin/Tools/Shredder/Elements/SelectPlugin b/share/html/Admin/Tools/Shredder/Elements/SelectPlugin index 97cf364..74b2cfb 100644 --- a/share/html/Admin/Tools/Shredder/Elements/SelectPlugin +++ b/share/html/Admin/Tools/Shredder/Elements/SelectPlugin @@ -54,7 +54,7 @@ $plugin => '' <select name="plugin" onchange="showShredderPluginTab(this.value);"> <option value=""><% _('(no value)') %></option> % foreach my $p( keys %plugins ) { -<option value="<% $p %>" <% ($p eq $Plugin)? 'selected="selected"': '' %>><% _($p) %></option> +<option value="<% $p %>" <% ($p eq $plugin)? 'selected="selected"': '' %>><% _($p) %></option> % } </select> </div> commit dcf69b65e2805aa160cd6bc4a4846e62afde93f8 Author: sunnavy <sunnavy [at] bestpractical> Date: Thu Nov 5 14:13:24 2009 +0800 tiny warning fix diff --git a/share/html/Elements/ListMenu b/share/html/Elements/ListMenu index 7dfacbd..10e8420 100644 --- a/share/html/Elements/ListMenu +++ b/share/html/Elements/ListMenu @@ -51,7 +51,7 @@ $items <ul class="list-menu"> % foreach my $key (sort keys %$items) { <li><span class="menu-item"><a href="<%RT->config->get('web_path')%><%$items->{$key}->{'path'}|n %>"><%$items->{$key}->{'title'}%></a></span><br /> -<span class="description"><%$items->{$key}->{description} || $items->{$key}->{text} %></span> +<span class="description"><%$items->{$key}->{description} || $items->{$key}->{text} || '' %></span> </li> %} commit 202e9e99ff51d78e3f28fd7577ebe31899171e44 Author: sunnavy <sunnavy [at] bestpractical> Date: Thu Nov 5 14:33:07 2009 +0800 path fix when calling /_elements/wrapper diff --git a/share/html/SelfService/Create.html b/share/html/SelfService/Create.html index 9178b02..387d08c 100755 --- a/share/html/SelfService/Create.html +++ b/share/html/SelfService/Create.html @@ -45,7 +45,7 @@ %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} -<&| _elements/wrapper, title => _("Create a ticket") &> +<&| /_elements/wrapper, title => _("Create a ticket") &> <& /Elements/ListActions, actions => \@results &> <form action="Create.html" method="post" enctype="multipart/form-data"> diff --git a/share/html/SelfService/CreateTicketInQueue.html b/share/html/SelfService/CreateTicketInQueue.html index 39b3609..33c3c92 100755 --- a/share/html/SelfService/CreateTicketInQueue.html +++ b/share/html/SelfService/CreateTicketInQueue.html @@ -45,7 +45,7 @@ %# those contributions and any derivatives thereof. %# %# END BPS TAGGED BLOCK }}} -<&| _elements/wrapper, title => _("Create a ticket") &> +<&| /_elements/wrapper, title => _("Create a ticket") &> <h1><&|/l&>Select a queue for your new ticket</&></h1> ----------------------------------------------------------------------- _______________________________________________ Rt-commit mailing list Rt-commit [at] lists http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-commit
|