From 21787c8203c8825ba0ac7ece724867eef4dae870 Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sun, 19 Jan 2025 13:03:32 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20(author):=20reindex=20authors=20?= =?UTF-8?q?on=20user=20change?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bl-kernel/functions.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bl-kernel/functions.php b/bl-kernel/functions.php index 3e4db37e..0547985d 100644 --- a/bl-kernel/functions.php +++ b/bl-kernel/functions.php @@ -490,6 +490,8 @@ function editUser($args) 'notes' => $args['username'] )); + reindexAuthors(); + return true; } @@ -523,6 +525,8 @@ function disableUser($args) 'notes' => $username )); + reindexAuthors(); + return true; } @@ -567,6 +571,8 @@ function deleteUser($args) 'notes' => $username )); + reindexAuthors(); + return true; }