<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><div>On Jun 4, 2009, at 5:44 AM, Guadagnino Cristiano wrote:</div><blockquote type="cite"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; "><div lang="EN-US" link="blue" vlink="purple"><div class="Section1"><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-family: 'Century Gothic', sans-serif; ">-  the new "homepage refresh interval" option in "preferences" doesn't work</span></div></div></div></span></blockquote><div><br></div>This works for me.</div><div><br><blockquote type="cite"><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; "><div lang="EN-US" link="blue" vlink="purple"><div class="Section1"><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-family: 'Century Gothic', sans-serif; "><o:p></o:p></span></div><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-family: 'Century Gothic', sans-serif; ">- when I'm root and I click on "configuration"->"users"->"whichever_user_name"->"History", I have this error message:<o:p></o:p></span></div><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-family: 'Century Gothic', sans-serif; "><o:p> </o:p></span></div><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; ">Can't locate object method "Name" via package "No object mapping for field" (perhaps you forgot to load "No object mapping for field"?) at /opt/rt3/local/plugins/RT-Extension-ForkTicket/html/Callbacks/RT-Extension-ForkTicket/Ticket/Elements/ShowTransaction/ModifyCommand line 7.<o:p></o:p></div><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><o:p> </o:p></div><div style="margin-top: 0cm; margin-right: 0cm; margin-left: 0cm; margin-bottom: 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif; "><span style="font-family: 'Century Gothic', sans-serif; ">it seems the culprit is the "ForkTicket" extension… maybe it is broken by the recent upgrade?</span></div></div></div></span></blockquote><br></div><div>Yes, one of the callbacks is.   My hack was such: (note that this also disables Pre/Post-task which we don't use -- but you can easily add them back in)</div><div><br></div><div><div>--- ModifyCommand_orig  2009-02-19 11:42:06.000000000 -0800</div><div>+++ ModifyCommand       2009-06-02 15:49:50.000000000 -0700</div><div>@@ -4,10 +4,15 @@</div><div> my $PosttaskURL = "[<a href=\"" . $ForkPath . "?CreateType=Posttask&QuoteTransaction=" . $Transaction->Id . "\">PostTask</a>]";</div><div> my $CloneURL = "[<a href=\"" . $ForkPath . "?CreateType=Clone&QuoteTransaction=" . $Transaction->Id . "\">Clone</a>]";</div><div> </div><div>-if ($Transaction->Type =~ /^(Create|Correspond|Comment)$/ && $Ticket->QueueObj->Name !~ /^(Approval)$/ && $Transaction->TicketObj->CurrentUserHasRight('ModifyTicket')) {</div><div>-   $$titlebar_cmd .= $PretaskURL;</div><div>-   $$titlebar_cmd .= $PosttaskURL;</div><div>-   $$titlebar_cmd .= $CloneURL;</div><div>+if( ref( $Ticket->QueueObj ) ) {</div><div>+       if ($Transaction->Type =~ /^(Create|Correspond|Comment)$/ && $Ticket->QueueObj->Name !~ /^(Approval)$/ && $Transaction->TicketObj->CurrentUserHasRight('ModifyTicket')) {</div><div>+               $$titlebar_cmd .= $CloneURL;</div><div>+       }</div><div>+}</div><div>+else {</div><div>+       if ($Transaction->Type =~ /^(Create|Correspond|Comment)$/ && $Transaction->TicketObj->CurrentUserHasRight('ModifyTicket')) {</div><div>+               $$titlebar_cmd .= $CloneURL;</div><div>+       }</div><div> }</div><div> </%INIT></div><div> <%ARGS></div><div><br></div></div><div><br></div><div><br></div><div><br></div><div> <span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><font face="Helvetica" size="3" style="font: normal normal normal 12px/normal Helvetica; ">-- </font></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><font face="Helvetica" size="3" style="font: normal normal normal 12px/normal Helvetica; ">Jo Rhett</font></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; "><font face="Helvetica" size="3" style="font: normal normal normal 12px/normal Helvetica; ">Net Consonance : consonant endings by net philanthropy, open source and other randomness</font></div></div><div><br></div></div></span><br class="Apple-interchange-newline"> </div><br></body></html>