소스 검색

fix for image-display $passed_ent_id -> ent_id
Now we only use passed_ent_id in case of message/rfc822 attachments

stekkel 23 년 전
부모
커밋
6d85a93ba4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      functions/mime.php

+ 1 - 1
functions/mime.php

@@ -1214,7 +1214,7 @@ function sq_cid2http($message, $id, $cidurl, $mailbox){
     $cidurl = substr(trim($cidurl), 4);
     $httpurl = $quotchar . "../src/download.php?absolute_dl=true&" .
         "passed_id=$id&mailbox=" . urlencode($mailbox) .
-        "&passed_ent_id=" . find_ent_id($cidurl, $message) . $quotchar;
+        "&ent_id=" . find_ent_id($cidurl, $message) . $quotchar;
     return $httpurl;
 }