
sunnavy at bestpractical
Nov 9, 2009, 4:01 PM
Post #1 of 1
(333 views)
Permalink
|
|
rt branch, 3.999-trunk, updated. 3a06d322d6262a9d3f1e0b0ee2c016610fab8ee4
|
|
The branch, 3.999-trunk has been updated via 3a06d322d6262a9d3f1e0b0ee2c016610fab8ee4 (commit) from a209cdf0c9c67cc96588132000207847dfe4fa59 (commit) Summary of changes: share/html/Admin/Elements/EditCustomFields | 2 +- share/html/Admin/Elements/PickCustomFields | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) - Log ----------------------------------------------------------------- commit 3a06d322d6262a9d3f1e0b0ee2c016610fab8ee4 Author: sunnavy <sunnavy [at] bestpractical> Date: Mon Nov 9 20:16:07 2009 +0800 go on case fix diff --git a/share/html/Admin/Elements/EditCustomFields b/share/html/Admin/Elements/EditCustomFields index 1cd4688..bf3db1d 100755 --- a/share/html/Admin/Elements/EditCustomFields +++ b/share/html/Admin/Elements/EditCustomFields @@ -197,7 +197,7 @@ $title => undef $move => undef $source => undef $custom_field => undef -$finddisabled_custom_fields => undef +$find_disabled_custom_fields => undef $update_cfs => 0 $object $object_type diff --git a/share/html/Admin/Elements/PickCustomFields b/share/html/Admin/Elements/PickCustomFields index 0cf3efd..4c35b7a 100644 --- a/share/html/Admin/Elements/PickCustomFields +++ b/share/html/Admin/Elements/PickCustomFields @@ -74,7 +74,7 @@ % # show 'move up' unless it's the first item % if ($count++ and $checked) { <td valign="top"> - [<a href="<%RT->config->get('web_path')%><% $m->request_comp->path |n %>?id=<%$id%>&sub_type=<%$sub_type%>&CustomField=<%$CustomFieldObj->id%>&Move=-1"><&|/l&>Move up</&></a>] + [<a href="<%RT->config->get('web_path')%><% $m->request_comp->path |n %>?id=<%$id%>&sub_type=<%$sub_type%>&custom_field=<%$CustomFieldObj->id%>&move=-1"><&|/l&>Move up</&></a>] % } else { <td valign="top" align="right"> % } @@ -82,7 +82,7 @@ % # show 'move down' unless it's the last item % if ($count != @custom_fields and $checked) { % $m->print(' | ') if $count > 1; - [<a href="<%RT->config->get('web_path')%><% $m->request_comp->path |n %>?id=<%$id%>&sub_type=<%$sub_type%>&CustomField=<%$CustomFieldObj->id%>&Move=1"><&|/l&>Move down</&></a>] + [<a href="<%RT->config->get('web_path')%><% $m->request_comp->path |n %>?id=<%$id%>&sub_type=<%$sub_type%>&custom_field=<%$CustomFieldObj->id%>&move=1"><&|/l&>Move down</&></a>] % } </td> </tr> ----------------------------------------------------------------------- _______________________________________________ Rt-commit mailing list Rt-commit [at] lists http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-commit
|