Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1098924
D190.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Aug 14, 7:33 AM
Size
503 B
Mime Type
text/x-diff
Expires
Fri, Aug 15, 7:33 AM (1 h, 16 m)
Engine
blob
Format
Raw Data
Handle
711424
Attached To
D190: INP-1528 - When attaching file to e-mail verify, that it's a file, not a directory
D190.id.diff
View Options
Index: branches/5.2.x/core/kernel/processors/main_processor.php
===================================================================
--- branches/5.2.x/core/kernel/processors/main_processor.php
+++ branches/5.2.x/core/kernel/processors/main_processor.php
@@ -1157,7 +1157,7 @@
$esender = $this->Application->recallObject($pseudo);
/* @var $esender kEmailSendingHelper */
- if ( file_exists($path) ) {
+ if ( file_exists($path) && is_file($path) ) {
$esender->AddAttachment($path);
}
}
Event Timeline
Log In to Comment