Changeset 421 in subversion


Ignore:
Timestamp:
Dec 20, 2006 9:26:37 AM (6 years ago)
Author:
thomasb
Message:

Little fix for new string quoting

Location:
trunk/roundcubemail/program
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/main.inc

    r419 r421  
    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['&'] = '&'; 
    10251025 
     
    10331033      } 
    10341034 
    1035     $js_rep_table['"'] = sprintf("\u%s%s", str_repeat('0', 4-strlen(dechex(34))), dechex(34)); 
    10361035    $xml_rep_table['"'] = '"'; 
    10371036    } 
  • trunk/roundcubemail/program/steps/mail/upload.inc

    r419 r421  
    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.