وحدة:اسم الصفحة غير صالح

هذه هي النسخة الحالية من هذه الصفحة، وقام بتعديلها عبود السكاف (نقاش | مساهمات) في 16:38، 27 ديسمبر 2016 (أنشأ الصفحة ب'-- This module implements Template:isValidPageName. local export = {} function export.isValidPageName(frame) local success, res = pcall(mw.title.new, frame.args[1...'). العنوان الحالي (URL) هو وصلة دائمة لهذه النسخة.

(فرق) → نسخة أقدم | نسخة حالية (فرق) | نسخة أحدث ← (فرق)

-- This module implements [[Template:isValidPageName]].

local export = {}

function export.isValidPageName(frame)
	local success, res = pcall(mw.title.new, frame.args[1])
	if success and res then
		return "valid"
	else
		return ""
	end
end

return export