Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Found a fix.

    goto: /postie/postie-functions.php

    Search for:

    case ‘image’:

    And inside that case statement there is a line:

    $attachments[“html”][$filename] = parseTemplate($file_id, $part->ctype_primary, $imagetemplate);

    Replace that line with

    $attachments[“html”][$filename] .= parseTemplate($file_id, $part->ctype_primary,
    $imagetemplate);

    That should fix it!

    I think there is similar bug with audio.. but not sure since i dont use that feature… if you are having the same problem, Just add in the period by the equals sign like i did for images

    Found a fix.

    goto: /postie/postie-functions.php

    Search for:

    case ‘image’:

    And inside that case statement there is a line:

    $attachments[“html”][$filename] = parseTemplate($file_id, $part->ctype_primary, $imagetemplate);

    Replace that line with

    $attachments[“html”][$filename] .= parseTemplate($file_id, $part->ctype_primary,
    $imagetemplate);

    That should fix it!

    I think there is similar bug with audio.. but not sure since i dont use that feature… if you are having the same problem, Just add in the period by the equals sign like i did for images

Viewing 2 replies - 1 through 2 (of 2 total)