Add support for SemanticMediaWiki, MobileFrontend, MsUpload, PageForms, PageSchemas, WikiMarkdown, Tweeki #31

Merged
decentral1se merged 13 commits from flancian/wiki.social.coop:main into main 2023-05-30 23:00:42 +00:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit a931c54b31 - Show all commits

View File

@ -2,7 +2,7 @@ export LOCAL_SETTINGS_CONF_VERSION=v12
export HTACCESS_CONF_VERSION=v1
export ENTRYPOINT_CONF_VERSION=v11
export COMPOSER_LOCAL_CONF_VERSION=v5
export PHP_INI_VERSION=v1
export PHP_INI_VERSION=v2
export SAML_ENTRYPOINT_CONF_VERSION=v3

View File

@ -2,3 +2,7 @@ upload_max_filesize = 10M
post_max_size = 10M
max_execution_time = 7200
max_file_uploads = 1000
{{ if eq (env "MEDIAWIKI_DEBUG") "0" }}
decentral1se marked this conversation as resolved
Review

Did you mean "1"? I see the default is MEDIAWIKI_DEBUG=0 in the .env.sample and elsewhere in the LocalSettings.php.tmpl it is {{ if eq (env "MEDIAWIKI_DEBUG") "1" }}.

Did you mean `"1"`? I see the default is `MEDIAWIKI_DEBUG=0` in the `.env.sample` and elsewhere in the `LocalSettings.php.tmpl` it is `{{ if eq (env "MEDIAWIKI_DEBUG") "1" }}`.
Review

Indeed I did, thank you :)

Indeed I did, thank you :)
Review

Oh, actually I didn't ;) This was meant to disable deprecation warnings and such -- I added an else block to make this clearer, I think this looks better?

Oh, actually I didn't ;) This was meant to *disable* deprecation warnings and such -- I added an else block to make this clearer, I think this looks better?
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT
{{ end }}