Skip to content

Commit

Permalink
Merge branch '4.4-dev' into sockets-for-system-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
muhme authored Sep 26, 2024
2 parents 67d3753 + 0461c99 commit ce35190
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,12 @@ public static function getContentTypeLink($component, $contentType, $id, $urlVar
*/
public static function loadActionLogPluginsLanguage()
{
static $loaded;
if ($loaded) {
return;
}
$loaded = true;

$lang = Factory::getLanguage();
$db = Factory::getDbo();

Expand Down
2 changes: 1 addition & 1 deletion administrator/components/com_menus/src/Model/ItemModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -998,7 +998,7 @@ protected function populateState()

$this->setState('item.type', $type);

$link = $app->isClient('api') ? $app->getInput()->get('link') :
$link = $app->isClient('api') ? $app->getInput()->get('link', null, 'string') :
$app->getUserState('com_menus.edit.item.link');

if ($link) {
Expand Down

0 comments on commit ce35190

Please # to comment.