[freeside-commits] branch master updated. 77d86a9c7df669870ff2cb2f15ba055aa28f1e99

Ivan ivan at 420.am
Tue Jul 3 01:33:32 PDT 2012


The branch, master has been updated
       via  77d86a9c7df669870ff2cb2f15ba055aa28f1e99 (commit)
       via  3bc6ec9b002c8b2d090f8b845e3953d91d7503dd (commit)
      from  c1c47b235a8668527acc1954051c50fe19804e97 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 77d86a9c7df669870ff2cb2f15ba055aa28f1e99
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Tue Jul 3 01:33:14 2012 -0700

    fix ticket resolved links, RT#13852

diff --git a/FS/FS/TicketSystem/RT_Internal.pm b/FS/FS/TicketSystem/RT_Internal.pm
index ffa8c7c..e2dfce3 100644
--- a/FS/FS/TicketSystem/RT_Internal.pm
+++ b/FS/FS/TicketSystem/RT_Internal.pm
@@ -151,7 +151,7 @@ sub _tickets_search {
 sub href_customer_tickets {
   my ($self, $custnum) = (shift, shift);
   if ($custnum =~ /^(\d+)$/) {
-    return $self->href_search_tickets("Customer.number = $custnum");
+    return $self->href_search_tickets("Customer.number = $custnum", @_);
   }
   warn "bad custnum $custnum"; '';
 }
@@ -159,7 +159,7 @@ sub href_customer_tickets {
 sub href_service_tickets {
   my ($self, $svcnum) = (shift, shift);
   if ($svcnum =~ /^(\d+)$/ ) {
-    return $self->href_search_tickets("Service.number = $svcnum");
+    return $self->href_search_tickets("Service.number = $svcnum", @_);
   }
   warn "bad svcnum $svcnum"; '';
 }

commit 3bc6ec9b002c8b2d090f8b845e3953d91d7503dd
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Tue Jul 3 01:32:31 2012 -0700

    rows per page

diff --git a/FS/FS/TicketSystem/RT_External.pm b/FS/FS/TicketSystem/RT_External.pm
index 22d2472..c2aac2d 100644
--- a/FS/FS/TicketSystem/RT_External.pm
+++ b/FS/FS/TicketSystem/RT_External.pm
@@ -264,7 +264,7 @@ sub href_search_tickets {
   uri_escape($href);
   #eventually should unescape all of it...
 
-  $href .= '&Rows=100'.
+  $href .= '&RowsPerPage=50'.
            '&OrderBy=id&Page=1'.
            '&Format=%27%20%20%20%3Cb%3E%3Ca%20href%3D%22'.
 	   $self->baseurl.

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/TicketSystem/RT_External.pm |    2 +-
 FS/FS/TicketSystem/RT_Internal.pm |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)




More information about the freeside-commits mailing list