Skip to content
This repository was archived by the owner on Mar 20, 2026. It is now read-only.

Commit ba0fa08

Browse files
authored
PagesCreated: encode title in deletion summaries (#613)
Was causing some issues for names containing a ?.
1 parent 5b9e7f9 commit ba0fa08

6 files changed

Lines changed: 5 additions & 5 deletions

File tree

assets/js/pages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ $(function () {
6060

6161
$.ajax({
6262
url: xtBaseUrl + 'api/pages/deletion_summary/' + wikiDomain + '/' + username + '/' + nsId
63-
+ '/' + pageTitle + '/' + startTime
63+
+ '/' + encodeURIComponent(pageTitle) + '/' + startTime
6464
}).done(function (resp) {
6565
if (null === resp.summary) {
6666
return showError();

public/build/app.0e66adfe.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/build/app.f4b6093c.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

public/build/entrypoints.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"js": [
55
"/build/runtime.c217f8c4.js",
66
"/build/852.96913092.js",
7-
"/build/app.f4b6093c.js"
7+
"/build/app.0e66adfe.js"
88
],
99
"css": [
1010
"/build/app.7692d209.css"

public/build/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"build/app.css": "/build/app.7692d209.css",
3-
"build/app.js": "/build/app.f4b6093c.js",
3+
"build/app.js": "/build/app.0e66adfe.js",
44
"build/runtime.js": "/build/runtime.c217f8c4.js",
55
"build/852.96913092.js": "/build/852.96913092.js",
66
"build/images/VPS-badge.svg": "/build/images/VPS-badge.svg",

0 commit comments

Comments
 (0)