i really hope this finally does it
[freeside.git] / FS / FS / cust_main.pm
index 064190a..a8a9ae4 100644 (file)
@@ -5789,6 +5789,7 @@ sub _agent_plandata {
 
   my $part_event_option =
     qsearchs({
+      'select'    => 'part_event_option.*',
       'table'     => 'part_event_option',
       'addl_from' => q{
         LEFT JOIN part_event USING ( eventpart )
@@ -5806,7 +5807,7 @@ sub _agent_plandata {
       #'hashref'   => { 'part_event_option.optionname' => $option },
       'extra_sql' =>
         " WHERE part_event_option.optionname = ". dbh->quote($option).
-        " AND action = 'cust_bill_send_agent' "
+        " AND action = 'cust_bill_send_agent' ".
         " AND ( disabled IS NULL OR disabled != 'Y' ) ".
         " AND peo_agentnum.optionname = 'agentnum' ".
         " AND agentnum IS NULL OR agentnum = $agentnum ".
@@ -5826,7 +5827,7 @@ sub _agent_plandata {
     
   unless ( $part_event_option ) {
     return $self->agent->invoice_template || ''
-      if $option eq '$agent_templatename';
+      if $option eq 'agent_templatename';
     return '';
   }