Skip to content
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
87ffae7
Fixes tedivm/Fetch#43 by creating a name for nameless attached emails…
AdrianTP Apr 2, 2014
39eba97
Removed error_log statements I mistakenly left in while debugging; co…
AdrianTP Apr 7, 2014
3ac1f49
Abstracted messageBody processing from processStructure and enabled e…
AdrianTP Apr 17, 2014
73c26e9
Forgot to document the new method.
AdrianTP Apr 17, 2014
8281c08
Some more changes to support pulling the Subject line from a .eml and…
AdrianTP May 12, 2014
b225230
Fixed issue with the Subject line parsing regex, which would cause it…
AdrianTP May 12, 2014
45741af
syntax error
AdrianTP May 12, 2014
85241d7
Fixing bugs reported by scrutinizer ('The class Fetch\Exception does …
AdrianTP May 12, 2014
1a613d4
Converted tabs to 4 spaces. Moved opening braces to the line after th…
AdrianTP May 13, 2014
881a3ff
Ran PHP-CS-Fixer.
AdrianTP May 13, 2014
5a1150e
Subject-to-Filename parsing got confused by DKIM-Signature section of…
AdrianTP May 13, 2014
e585f16
My IDE lost its tabs --> spaces setting, and ended up putting tabs in…
AdrianTP May 13, 2014
ece5dfd
Made some changes to the processing of email contents and encoded Sub…
AdrianTP May 20, 2014
7078427
Simplified encoded Subject-line processing into filename. Skip proces…
AdrianTP May 23, 2014
a01932d
The code was still causing attached HTML files to be inlined. Now any…
AdrianTP May 27, 2014
766db0a
Merge pull request #75 from Aeolun/master
tedivm Jul 28, 2014
5ee7fc8
Fixes tedivm/Fetch#43 by creating a name for nameless attached emails…
AdrianTP Apr 2, 2014
c9c5435
Removed error_log statements I mistakenly left in while debugging; co…
AdrianTP Apr 7, 2014
d2fd08e
Abstracted messageBody processing from processStructure and enabled e…
AdrianTP Apr 17, 2014
14ace38
Forgot to document the new method.
AdrianTP Apr 17, 2014
827dea1
Some more changes to support pulling the Subject line from a .eml and…
AdrianTP May 12, 2014
7572fa4
Fixed issue with the Subject line parsing regex, which would cause it…
AdrianTP May 12, 2014
ebce9b8
syntax error
AdrianTP May 12, 2014
3b7398e
Fixing bugs reported by scrutinizer ('The class Fetch\Exception does …
AdrianTP May 12, 2014
1672250
Converted tabs to 4 spaces. Moved opening braces to the line after th…
AdrianTP May 13, 2014
3540360
Ran PHP-CS-Fixer.
AdrianTP May 13, 2014
a4c98f6
Subject-to-Filename parsing got confused by DKIM-Signature section of…
AdrianTP May 13, 2014
a44a856
My IDE lost its tabs --> spaces setting, and ended up putting tabs in…
AdrianTP May 13, 2014
1143d4c
Made some changes to the processing of email contents and encoded Sub…
AdrianTP May 20, 2014
79d96ff
Simplified encoded Subject-line processing into filename. Skip proces…
AdrianTP May 23, 2014
15e5160
The code was still causing attached HTML files to be inlined. Now any…
AdrianTP May 27, 2014
dc98c0f
local merge
AdrianTP Jul 30, 2014
27c1c88
Travis build failed on bootstrap.php because of a change my push/merg…
AdrianTP Jul 30, 2014
b6fa0f4
Fixing another error which I don't recall causing.
AdrianTP Jul 30, 2014
0c3f751
Ran PHP-CS-Fixer again.
AdrianTP Jul 30, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
syntax error
  • Loading branch information
AdrianTP committed Jul 30, 2014
commit ebce9b899bb537b789ebac933c9cdd6596dc73cc
2 changes: 1 addition & 1 deletion src/Fetch/Message.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ protected function loadMessage()
// multipart
foreach ($structure->parts as $id => $part) {
if (!empty($part->description)) {
$cleanFilename = self::processFilename(preg_replace('/_/', " ", $part->description);
$cleanFilename = self::processFilename(preg_replace('/_/', " ", $part->description));
$part->description = $cleanFilename;
foreach($part->parameters as $key => $parameter) {
if ($parameter->attribute === "name") {
Expand Down