From eda73272f809f286a529c9301ad4fddf645d86af Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Mon, 1 Jun 2020 16:18:08 -0700 Subject: [PATCH] iad2: wiki: Fix LocalSettings.php syntax. The variable needs a $ in front of it. Signed-off-by: Kevin Fenzi --- roles/mediawiki/templates/LocalSettings.php.fp.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/mediawiki/templates/LocalSettings.php.fp.j2 b/roles/mediawiki/templates/LocalSettings.php.fp.j2 index 35180f13f3..11449559ac 100644 --- a/roles/mediawiki/templates/LocalSettings.php.fp.j2 +++ b/roles/mediawiki/templates/LocalSettings.php.fp.j2 @@ -453,7 +453,7 @@ $wgGroupPermissions['Packaging']['read'] = true; require_once( "$IP/extensions/Lockdown/Lockdown.php" ); {% else %} wfLoadExtension( 'Lockdown' ); -wgActorTableSchemaMigrationStage = MIGRATION_OLD; +$wgActorTableSchemaMigrationStage = MIGRATION_OLD; {% endif %} $wgSpecialPageLockdown['Export'] = array('*');