Closed auge8472 closed 4 months ago
Moved two entries of files, that have to be deleted, from the array $update['items']
to $update['delete']
. That is to list these entries in the matching file list.
Furthermore I added the block to upgrade a forum from the testing version 20240308.1 to the current state and added the necessary entries to the file lists of the blocks for upgrade from previous versions.
In a former state the WHERE-clause for the search for the possibly existing obsolete indexes
user_type
anduser_name
in the userdata table worked withLIKE 'user_%'
. Because this could theoretically affect further indexes, beginning withuser_
, that could be created by a forum operator, we changed the syntax to search the exact names withIN('user_type', 'user_name')
. Doing this I forgot to remove the keywordLIKE
from the WHERE-clause. So the first fix in this pull request is to remove LIKE from the query.