We should use "self"

This commit is contained in:
Michael 2020-03-22 09:59:06 +00:00
parent 2c6c6579af
commit f8d20b365f
1 changed files with 1 additions and 1 deletions

View File

@ -663,7 +663,7 @@ class Photo
];
if (!Photo::exists($condition)) {
$condition = ['resource-id' => $image_rid];
$photo = Photo::selectFirst(['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'uid'], $condition);
$photo = self::selectFirst(['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'uid'], $condition);
if (!DBA::isResult($photo)) {
Logger::info('Image not found', ['condition' => $condition]);
} else {