Defect #33341 » timelog_helper.diff
| app/helpers/timelog_helper.rb | ||
|---|---|---|
| 44 | 44 | |
| 45 | 45 | 
    def user_collection_for_select_options(time_entry)  | 
| 46 | 46 | 
    collection = time_entry.assignable_users  | 
| 47 | 
        collection << time_entry.user unless time_entry.user.nil? && !collection.include?(time_entry.user)
   | 
|
| 47 | 
        collection << time_entry.user if time_entry.user && !collection.include?(time_entry.user)
   | 
|
| 48 | 48 | 
    principals_options_for_select(collection, time_entry.user_id.to_s)  | 
| 49 | 49 | 
    end  | 
| 50 | 50 | |