Skip to content

Commit

Permalink
[mms] Don't honor linked attachment limit configuration options if li…
Browse files Browse the repository at this point in the history
…nked attachments are disabled (Bug #13665).
  • Loading branch information
slusarz committed Feb 25, 2015
1 parent be709c3 commit fdf4a24
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 2 additions & 0 deletions imp/docs/CHANGES
Expand Up @@ -2,6 +2,8 @@
v6.2.8-git
----------

[mms] Don't honor linked attachment limit configuration options if linked
attachments are disabled (Bug #13665).


------
Expand Down
4 changes: 4 additions & 0 deletions imp/lib/Compose.php
Expand Up @@ -2850,6 +2850,10 @@ protected function _linkAttachments(&$body, $html)
{
global $conf;

if (empty($conf['compose']['link_attachments'])) {
return;
}

$link_all = false;
$linked = array();

Expand Down
4 changes: 2 additions & 2 deletions imp/package.xml
Expand Up @@ -33,7 +33,7 @@
</stability>
<license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
<notes>
*
* [mms] Don&apos;t honor linked attachment limit configuration options if linked attachments are disabled (Bug #13665).
</notes>
<contents>
<dir baseinstalldir="/" name="/">
Expand Down Expand Up @@ -3828,7 +3828,7 @@
<date>2015-02-10</date>
<license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
<notes>
*
* [mms] Don&apos;t honor linked attachment limit configuration options if linked attachments are disabled (Bug #13665).
</notes>
</release>
</changelog>
Expand Down

0 comments on commit fdf4a24

Please sign in to comment.