Skip to content

Commit

Permalink
Fix var not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Jan 19, 2019
1 parent 88635e3 commit 616aa1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/core/modules/modDeplacement.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ function __construct($db)
$childids = $user->getAllChildIds();
$childids[]=$user->id;

if (empty($user->rights->deplacement->readall) && empty($user->rights->deplacement->lire_tous)) $sql.=' AND d.fk_user IN ('.join(',',$childids).')';
if (empty($user->rights->deplacement->readall) && empty($user->rights->deplacement->lire_tous)) $this->export_sql_end[$r] .=' AND d.fk_user IN ('.join(',',$childids).')';
}
}

Expand Down

0 comments on commit 616aa1f

Please sign in to comment.