Modul:Wikibase: Perbedaan antara revisi

Konten dihapus Konten ditambahkan
Perbarui sintaks LUA per versi terbaru dari modul yang bersangkutan.
missing function for Templat:Infobox lokasi, cleaning up Kategori:Halaman dengan galat skrip
Baris 78:
end
end
end
 
-- Returns true if property datavalue is found excluding novalue/somevalue and deprecated rank
function p.validProperty(frame)
local property = mw.text.trim(frame.args[1])
local item = frame.args.item or frame.args.from; if item == '' then item = nil end
if item == nil then item = mw.wikibase.getEntityIdForCurrentPage() end
if item == nil then return end
local properties = mw.wikibase.getBestStatements(item, property)
if #properties == 0 then return end
return properties[1].mainsnak.datavalue and true or nil
end