Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1181812
D414.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
Tue, Oct 14, 5:04 AM
Size
544 B
Mime Type
text/x-diff
Expires
Wed, Oct 15, 5:04 AM (9 h, 59 m)
Engine
blob
Format
Raw Data
Handle
767302
Attached To
D414: INP-1810 - Use linked info in "OnNew" event only, when it's available
D414.diff
View Options
Index: branches/5.2.x/core/kernel/db/db_event_handler.php
===================================================================
--- branches/5.2.x/core/kernel/db/db_event_handler.php
+++ branches/5.2.x/core/kernel/db/db_event_handler.php
@@ -1730,7 +1730,9 @@
$table_info = $object->getLinkedInfo();
}
- $object->SetDBField($table_info['ForeignKey'], $table_info['ParentId']);
+ if ( $table_info !== false ) {
+ $object->SetDBField($table_info['ForeignKey'], $table_info['ParentId']);
+ }
$event->redirect = false;
}
Event Timeline
Log In to Comment