mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-23 23:24:39 +00:00
Use strings rather than integers
Follow up to Iae454e4b4704a0289ca0a2b0794730562fda0dd1 Bug: T364347 Change-Id: I152af4bced8275fd9ae83d056550106e59f34815
This commit is contained in:
parent
b53deb5bf6
commit
aed5a78d6a
|
@ -208,21 +208,21 @@
|
|||
"includes/ServiceWiring.php"
|
||||
],
|
||||
"DefaultUserOptions": {
|
||||
"popups": 1,
|
||||
"popupsreferencepreviews": 0,
|
||||
"popups-reference-previews": 0
|
||||
"popups": "1",
|
||||
"popupsreferencepreviews": "0",
|
||||
"popups-reference-previews": "0"
|
||||
},
|
||||
"ConditionalUserOptions": {
|
||||
"popups": [
|
||||
[
|
||||
1,
|
||||
"1",
|
||||
[
|
||||
"registered-after",
|
||||
"20170816000000"
|
||||
]
|
||||
],
|
||||
[
|
||||
0,
|
||||
"0",
|
||||
[
|
||||
"named-user"
|
||||
]
|
||||
|
@ -230,14 +230,14 @@
|
|||
],
|
||||
"popups-reference-previews": [
|
||||
[
|
||||
1,
|
||||
"1",
|
||||
[
|
||||
"registered-after",
|
||||
"20170816000000"
|
||||
]
|
||||
],
|
||||
[
|
||||
0,
|
||||
"0",
|
||||
[
|
||||
"named-user"
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue