Skip to content

Commit

Permalink
Fix: Missing fields into select
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Sep 28, 2014
1 parent 5fdd798 commit 6a57022
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/comm/action/class/actioncomm.class.php
Expand Up @@ -284,7 +284,7 @@ function fetch($id)
$sql.= " a.fk_user_action, a.fk_user_done,";
$sql.= " a.fk_contact, a.percent as percentage,";
$sql.= " a.fk_element, a.elementtype,";
$sql.= " a.priority, a.fulldayevent, a.location, a.transparency,";
$sql.= " a.priority, a.fulldayevent, a.location, a.punctual, a.transparency,";
$sql.= " c.id as type_id, c.code as type_code, c.libelle,";
$sql.= " s.nom as socname,";
$sql.= " u.firstname, u.lastname as lastname";
Expand Down Expand Up @@ -878,7 +878,7 @@ function build_exportfile($format,$type,$cachedelay,$filename,$filters)
$sql.= " a.fk_user_action, a.fk_user_done,";
$sql.= " a.fk_contact, a.percent as percentage,";
$sql.= " a.fk_element, a.elementtype,";
$sql.= " a.priority, a.fulldayevent, a.location,";
$sql.= " a.priority, a.fulldayevent, a.location, a.punctual, a.transparency,";
$sql.= " u.firstname, u.lastname,";
$sql.= " s.nom as socname,";
$sql.= " c.id as type_id, c.code as type_code, c.libelle";
Expand Down

0 comments on commit 6a57022

Please sign in to comment.