Ignore:
Timestamp:
10/26/11 09:08:59 (13 years ago)
Author:
rafaelraymundo
Message:

Ticket #2067 - Link incorreto no corpo da mensagem .

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.3/expressoMail1_2/js/rich_text_editor.js

    r5006 r5119  
    432432                } 
    433433        } 
    434                 var szURL = prompt(get_lang('Enter with link URL:'), 'http://');  
     434                var szURL = prompt(get_lang('Enter with link URL: '), 'http://'); 
    435435        if ((szURL != null) && (szURL != "")){ 
     436            if (szURL.indexOf('://') == -1) szURL = 'http://' + szURL; 
    436437                this.editorCommand("CreateLink", szURL); 
    437438        } 
Note: See TracChangeset for help on using the changeset viewer.