1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-27 01:02:42 +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:
epriestley 2019-03-23 07:27:42 -07:00
parent c16a8c7ab2
commit aae7bdbbdd

View file

@ -385,7 +385,7 @@ final class PhrictionDocumentQuery
); );
if (isset($keys['title'])) { if (isset($keys['title'])) {
$map['title'] = $cursor->getRawRowProperty('c.title'); $map['title'] = $cursor->getRawRowProperty('title');
} }
return $map; return $map;