Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions webserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,10 @@ RUN cd /rw/extensions/PageForms && patch -l -p0 < PF_FormPrinter.php.$MW_REL_BRA
# (prevents auto-filled destination filename from being overwritten by uploaded file's name)
RUN cd /rw/extensions/PageForms && patch -l -p0 < PF_upload.js.$MW_REL_BRANCH.patch

# Apply PageForms patch to fix missing 'pf' dependency in rating module
# (adds ext.pageforms dependency to ext.pageforms.rating module to prevent "pf is not defined" error)
RUN cd /rw/extensions/PageForms && patch -l -p0 < extension.json.$MW_REL_BRANCH.patch

# Sphinx: Setup cron job
RUN apt-get install -y cron \
&& mv -f /rw/extensions/SphinxSearch/sphinx.cron /etc/cron.d/sphinxsearch-update \
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
--- extension.json 2026-04-21 14:30:13.653018861 -0700
+++ extension.json 2026-04-21 14:31:15.113484589 -0700
@@ -339,6 +339,9 @@
"scripts": [
"libs/jquery.rateyo.js",
"libs/PF_rating.js"
+ ],
+ "dependencies": [
+ "ext.pageforms"
]
},
"ext.pageforms.rating.styles": {
Loading