Skip to content

Commit

Permalink
Auto commit by PageToGitHub2024-08-19
Browse files Browse the repository at this point in the history
  • Loading branch information
lucamauri committed Aug 19, 2024
1 parent 9efd7fb commit 2fa5f51
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions wikitrek-DTBase.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-- [P2G] Auto upload by PageToGitHub on 2024-08-19T22:53:24+02:00
-- [P2G] Auto upload by PageToGitHub on 2024-08-19T22:59:14+02:00
-- [P2G] This code from page Modulo:wikitrek-DTBase
--- This module represent the package containing basic functions to access data from the WikiBase instance DataTrek
-- @module p
Expand Down Expand Up @@ -560,7 +560,10 @@ function p.ListBackReferences(frame)
Row = "[[" .. v.fulltext .. "]]"
end
if v.printouts['DataTrek ID'][1] ~= nil then
Row = Row .. " - " .. v.printouts['DataTrek ID'][1] --.. " - " .. v.printouts['Istanza'][1].fulltext
Row = Row .. " - " .. v.printouts['DataTrek ID'][1]
if v.printouts['Istanza'][1] ~= nil then
Row = Row .. " - " .. v.printouts['Istanza'][1].fulltext
end
end

AllBackReferences[#AllBackReferences + 1] = "*" .. Row
Expand Down

0 comments on commit 2fa5f51

Please sign in to comment.