Changeset 7447


Ignore:
Timestamp:
10/19/12 15:30:53 (12 years ago)
Author:
fernando
Message:

Ticket #3088 - corrigido na busca avançada as flags de importante e não importante

Location:
trunk/expressoMail1_2/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/expressoMail1_2/js/MAExpressoPattern.js

    r7414 r7447  
    13961396                    if (x != 'importance'){ 
    13971397                        if(( x != 'unseen') && ( x != 'answered')){ 
    1398                             if((taglist[0][x] != '') && (taglist[0][x] != ' ') && (taglist[0][x] != null) && (x != 'msgid')) 
     1398                            if((taglist[0][x] != '') && (taglist[0][x] != ' ') && (taglist[0][x] != null) && (x != 'msgid')) { 
    13991399                                tagdata += '<'+action+' value="'+x+'"/>'; 
     1400                            } else { 
     1401                                if(x == 'flagged')  
     1402                                    tagdata += '<'+action+' value="unflagged"/>'; 
     1403                            } 
    14001404                        } 
    14011405                        else{ 
  • trunk/expressoMail1_2/js/MAQueryConfig.js

    r7414 r7447  
    415415  } else { 
    416416      this.tag = '"tags":['; 
    417       if(get_current_folder().indexOf("local") != "-1"){ 
     417      //if(get_current_folder().indexOf("local") != "-1"){ 
    418418          for(var k in taglist){ 
    419419            if(k != null){ 
     
    421421            } 
    422422          } 
    423       }  
     423      //}  
    424424  } 
    425425/* 
Note: See TracChangeset for help on using the changeset viewer.