We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34cab06 commit 415eabdCopy full SHA for 415eabd
components/ILIAS/LTIProvider/classes/InternalProvider/class.ilAuthProviderLTI.php
@@ -122,7 +122,10 @@ public static function lookupConsumer(int $a_sid): string
122
{
123
$connector = new ilLTIDataConnector();
124
$consumer = ilLTIPlatform::fromRecordId($a_sid, $connector);
125
- return $consumer->getTitle();
+
126
+ $object_ref = $consumer->getRefId();
127
+ $object_title = ilObject2::_lookupTitle(ilObject2::_lookupObjectId($object_ref));
128
+ return $consumer->getTitle() . " / " . $object_title;
129
}
130
131
/**
0 commit comments