Merge branch 'MDL-64820-master-fix' of git://github.com/junpataleta/moodle

This commit is contained in:
Jun Pataleta
2019-03-25 09:38:56 +08:00
@@ -47,13 +47,13 @@ class discussion_list extends db_table_vault {
/** The table for this vault */
private const TABLE = 'forum_discussions';
/** Alias for first author id */
private const FIRST_AUTHOR_ID_ALIAS = 'userpictureid';
private const FIRST_AUTHOR_ID_ALIAS = 'fauserpictureid';
/** Alias for author fields */
private const FIRST_AUTHOR_ALIAS = 'userrecord';
private const FIRST_AUTHOR_ALIAS = 'fauserrecord';
/** Alias for last author id */
private const LATEST_AUTHOR_ID_ALIAS = 'userpictureid';
private const LATEST_AUTHOR_ID_ALIAS = 'lauserpictureid';
/** Alias for last author fields */
private const LATEST_AUTHOR_ALIAS = 'userrecord';
private const LATEST_AUTHOR_ALIAS = 'lauserrecord';
/** Default limit */
public const PAGESIZE_DEFAULT = 100;