Changeset f91a499 in github


Ignore:
Timestamp:
Dec 20, 2006 9:26:37 AM (7 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
04c6180
Parents:
b66d407
Message:

Little fix for new string quoting

Location:
program
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • program/include/main.inc

    r2bca6e1 rf91a499  
    10211021  if (!$js_rep_table) 
    10221022    { 
    1023     $js_rep_tabl = $xml_rep_table = array(); 
     1023    $js_rep_table = $xml_rep_table = array(); 
    10241024    $xml_rep_table['&'] = '&amp;'; 
    10251025 
     
    10331033      } 
    10341034 
    1035     $js_rep_table['"'] = sprintf("\u%s%s", str_repeat('0', 4-strlen(dechex(34))), dechex(34)); 
    10361035    $xml_rep_table['"'] = '&quot;'; 
    10371036    } 
  • program/steps/mail/upload.inc

    r2bca6e1 rf91a499  
    5757                       $JS_OBJECT_NAME, 
    5858                       $id, 
    59                        JQ(Q(rcube_label('delete'))), 
    60                        JQ($button), 
    61                        JQ(Q($_FILES['_attachments']['name'][$i]))); 
     59                       Q(rcube_label('delete')), 
     60                       $button, 
     61                       Q($_FILES['_attachments']['name'][$i])); 
    6262 
    6363    $response .= sprintf('parent.%s.add2attachment_list(\'rcmfile%d\',\'%s\');', 
Note: See TracChangeset for help on using the changeset viewer.