From a7797c331e1fa86bdef5c49d6870d822dc591217 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Sat, 5 Oct 2024 16:09:13 -0700 Subject: Use @ when accessing variables in templates Access without the @ symbol is the older method and is discouraged. This take leaves alone accesses of variables that are defined within the template, which don't seem to allow an @. This batch of changes is for templates related to web sites. --- modules/apache/templates/vhost_wsgi.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/apache/templates/vhost_wsgi.conf') diff --git a/modules/apache/templates/vhost_wsgi.conf b/modules/apache/templates/vhost_wsgi.conf index 34926411..2f1ba585 100644 --- a/modules/apache/templates/vhost_wsgi.conf +++ b/modules/apache/templates/vhost_wsgi.conf @@ -1,3 +1,3 @@ -WSGIScriptAlias / <%= wsgi_path %> +WSGIScriptAlias / <%= @wsgi_path %> -- cgit v1.2.1