Module:Citation/CS1: திருத்தங்களுக்கு இடையிலான வேறுபாடு
உள்ளடக்கம் நீக்கப்பட்டது உள்ளடக்கம் சேர்க்கப்பட்டது
Synch from sandbox; |
சி change link_param_ok (value) to allow underscore; |
||
வரிசை 266:
Link parameters are to hold the title of a wikipedia article so none of the WP:TITLESPECIALCHARACTERS are allowed:
# < > [ ] | { } _
except the underscore which is used as a space in wiki urls
returns false when the value contains any of these characters.
வரி 275 ⟶ 277:
local function link_param_ok (value)
local scheme, domain;
if value:find ('[#<>%[%]|{}
return false;
end
| |||