Use of "self" in callables is deprecated in php 8.2

@a2exfr push :  Use of "self" in callables is deprecated
This commit is contained in:
gtbu 2023-02-19 13:15:45 +01:00 committed by GitHub
parent 52b468feb2
commit 175a268962
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -143,7 +143,7 @@ class Trash extends \gp\special\Base{
}
}
uasort($trash_titles,array('self','TitleSort'));
uasort($trash_titles,array('gp\admin\Content\Trash','TitleSort'));
return $trash_titles;
}