From 3a41c24e6e5bcea2f4b9f328ddf5ff0cb8a8b2e8 Mon Sep 17 00:00:00 2001 From: Fredrick Brennan Date: Thu, 2 May 2019 12:17:21 +0800 Subject: [PATCH] Fix PHP 7.3 regression in ?/users This gets rid of the "Case-insensitive constants are deprecated" error by passing doing |upper before passing to constant(). --- templates/mod/users.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/mod/users.html b/templates/mod/users.html index 6f42ce2a..4f02c524 100644 --- a/templates/mod/users.html +++ b/templates/mod/users.html @@ -47,10 +47,10 @@ {% endif %} - {% if mod|hasPermission(config.mod.promoteusers) and user.type < constant(config.mod.groups[0:-1]|last) %} + {% if mod|hasPermission(config.mod.promoteusers) and user.type < constant(config.mod.groups[0:-1]|last|upper) %} {% endif %} - {% if mod|hasPermission(config.mod.promoteusers) and user.type > constant(config.mod.groups|first) %} + {% if mod|hasPermission(config.mod.promoteusers) and user.type > constant(config.mod.groups|first|upper) %} {% endif %} {% if mod|hasPermission(config.mod.modlog) %}