Module:Navbar: Difference between revisions
remove obnoxious pcall-and-rethrow behavior, now that real script errors include details
m>Edokter (No longer needed; moved fix to Common.css.) |
m>Jackmcbarn (remove obnoxious pcall-and-rethrow behavior, now that real script errors include details) |
||
Line 6: | Line 6: | ||
local function trim(s) | local function trim(s) | ||
return mw.ustring.match(s, "^%s*(.-)%s*$") | return mw.ustring.match(s, "^%s*(.-)%s*$") | ||
end | end | ||
Line 40: | Line 28: | ||
function p._navbar(args) | function p._navbar(args) | ||
local | local title, talk_title; | ||
local titleArg = 1 | local titleArg = 1 | ||
Line 54: | Line 42: | ||
end | end | ||
title, talk_title = getTitle(args[titleArg] or (':' .. mw.getCurrentFrame():getParent():getTitle())); | |||
if not title then | if not title then | ||
error('Page does not exist') | |||
end | end | ||