1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 20:51:53 +02:00

Gsitemap: Fix for importing navigation links that use a SEF URL configuration.

This commit is contained in:
Cameron 2021-07-22 12:15:04 -07:00
parent 7a04260b5f
commit fce00b4276

View File

@ -223,7 +223,7 @@ class gsitemap_ui extends e_admin_ui
'table' => 'links',
'id' => $row['link_id'],
'name' => $row['link_name'],
'url' => $row['link_url'],
'url' => !empty($row['link_owner']) && !empty($row['link_sefurl']) ? e107::url($row['link_owner'], $row['link_sefurl']) : $row['link_url'],
'type' => GSLAN_1);
}
}