mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Reference raw "title" row in Phriction paging, not "c.title"
Trivial mistake -- the query "SELECT x.y ..." selects a column named "y". The other calls to "getRawRowProperty()" get this right.
This commit is contained in:
parent
c16a8c7ab2
commit
aae7bdbbdd
1 changed files with 1 additions and 1 deletions
|
@ -385,7 +385,7 @@ final class PhrictionDocumentQuery
|
|||
);
|
||||
|
||||
if (isset($keys['title'])) {
|
||||
$map['title'] = $cursor->getRawRowProperty('c.title');
|
||||
$map['title'] = $cursor->getRawRowProperty('title');
|
||||
}
|
||||
|
||||
return $map;
|
||||
|
|
Loading…
Reference in a new issue