mirror of
https://gitlab.com/chicken-riders/RcGcDw.git
synced 2025-02-24 00:34:10 +00:00
Fixed #124
This commit is contained in:
parent
4690fa1fe3
commit
1d20151481
|
@ -635,12 +635,12 @@ def embed_formatter(action, change, parsed_comment, categories):
|
||||||
return
|
return
|
||||||
if "sitewide" not in change["logparams"]:
|
if "sitewide" not in change["logparams"]:
|
||||||
restriction_description = ""
|
restriction_description = ""
|
||||||
if change["logparams"]["restrictions"]["pages"]:
|
if "pages" in change["logparams"]["restrictions"] and change["logparams"]["restrictions"]["pages"]:
|
||||||
restriction_description = _("Blocked from editing the following pages: ")
|
restriction_description = _("Blocked from editing the following pages: ")
|
||||||
for page in change["logparams"]["restrictions"]["pages"]:
|
for page in change["logparams"]["restrictions"]["pages"]:
|
||||||
restricted_pages = ["*"+i["page_title"]+"*" for i in change["logparams"]["restrictions"]["pages"]]
|
restricted_pages = ["*"+i["page_title"]+"*" for i in change["logparams"]["restrictions"]["pages"]]
|
||||||
restriction_description = restriction_description + ", ".join(restricted_pages)
|
restriction_description = restriction_description + ", ".join(restricted_pages)
|
||||||
if change["logparams"]["restrictions"]["namespaces"]:
|
if "namespaces" in change["logparams"]["restrictions"] and change["logparams"]["restrictions"]["namespaces"]:
|
||||||
namespaces = []
|
namespaces = []
|
||||||
if restriction_description:
|
if restriction_description:
|
||||||
restriction_description = restriction_description + _(" and namespaces: ")
|
restriction_description = restriction_description + _(" and namespaces: ")
|
||||||
|
|
Loading…
Reference in a new issue