Merge pull request #9637 from annando/db-error
Fixes "Unknown column '729' in 'field list'"
This commit is contained in:
commit
2a6715e93f
|
@ -151,7 +151,7 @@ class Photo extends BaseModule
|
|||
|
||||
$photo = MPhoto::selectFirst([], ["scale" => $scale, "uid" => $uid, "profile" => 1]);
|
||||
if (empty($photo)) {
|
||||
$contact = DBA::selectFirst('contact', ['uid' => $uid, 'self' => true]) ?: [];
|
||||
$contact = DBA::selectFirst('contact', [], ['uid' => $uid, 'self' => true]) ?: [];
|
||||
|
||||
switch($type) {
|
||||
case "profile":
|
||||
|
|
Loading…
Reference in a new issue